Optional part
ID: 197
using uCalcSoftware;
var uc = new uCalc();
var t = uc.NewTransformer();
t.FromTo("a [simple] test", "<{@Self}>");
Console.WriteLine(t.Transform("Is this a simple test, or a hard test, or just a test?"));
Is this <a simple test>, or a hard test, or just <a test>? using uCalcSoftware; var uc = new uCalc(); var t = uc.NewTransformer(); t.FromTo("a [simple] test", "<{@Self}>"); Console.WriteLine(t.Transform("Is this a simple test, or a hard test, or just a test?"));
#include
#include "uCalc.h"
using namespace std;
using namespace uCalcSoftware;
int main() {
uCalc uc;
auto t = uc.NewTransformer();
t.FromTo("a [simple] test", "<{@Self}>");
cout << t.Transform("Is this a simple test, or a hard test, or just a test?") << endl;
}
Is this <a simple test>, or a hard test, or just <a test>? #include <iostream> #include "uCalc.h" using namespace std; using namespace uCalcSoftware; int main() { uCalc uc; auto t = uc.NewTransformer(); t.FromTo("a [simple] test", "<{@Self}>"); cout << t.Transform("Is this a simple test, or a hard test, or just a test?") << endl; }
Imports System
Imports uCalcSoftware
Public Module Program
Public Sub Main()
Dim uc As New uCalc()
Dim t = uc.NewTransformer()
t.FromTo("a [simple] test", "<{@Self}>")
Console.WriteLine(t.Transform("Is this a simple test, or a hard test, or just a test?"))
End Sub
End Module
Is this <a simple test>, or a hard test, or just <a test>? Imports System Imports uCalcSoftware Public Module Program Public Sub Main() Dim uc As New uCalc() Dim t = uc.NewTransformer() t.FromTo("a [simple] test", "<{@Self}>") Console.WriteLine(t.Transform("Is this a simple test, or a hard test, or just a test?")) End Sub End Module