{@StatementSeparator}
ID: 184
using uCalcSoftware;
var uc = new uCalc();
var t = uc.NewTransformer();
t.FromTo("{@StatementSeparator}", "");
Console.WriteLine(t.Transform("a = b + c; x = y + 1;"));
a = b + c<sep> x = y + 1<sep> using uCalcSoftware; var uc = new uCalc(); var t = uc.NewTransformer(); t.FromTo("{@StatementSeparator}", "<sep>"); Console.WriteLine(t.Transform("a = b + c; x = y + 1;"));
#include
#include "uCalc.h"
using namespace std;
using namespace uCalcSoftware;
int main() {
uCalc uc;
auto t = uc.NewTransformer();
t.FromTo("{@StatementSeparator}", "");
cout << t.Transform("a = b + c; x = y + 1;") << endl;
}
a = b + c<sep> x = y + 1<sep> #include <iostream> #include "uCalc.h" using namespace std; using namespace uCalcSoftware; int main() { uCalc uc; auto t = uc.NewTransformer(); t.FromTo("{@StatementSeparator}", "<sep>"); cout << t.Transform("a = b + c; x = y + 1;") << endl; }
Imports System
Imports uCalcSoftware
Public Module Program
Public Sub Main()
Dim uc As New uCalc()
Dim t = uc.NewTransformer()
t.FromTo("{@StatementSeparator}", "")
Console.WriteLine(t.Transform("a = b + c; x = y + 1;"))
End Sub
End Module
a = b + c<sep> x = y + 1<sep> Imports System Imports uCalcSoftware Public Module Program Public Sub Main() Dim uc As New uCalc() Dim t = uc.NewTransformer() t.FromTo("{@StatementSeparator}", "<sep>") Console.WriteLine(t.Transform("a = b + c; x = y + 1;")) End Sub End Module