uCalc Description
ID: 171
using uCalcSoftware;
var uc = new uCalc();
uc.Description = "This is the main uCalc object";
var t = uc.NewTransformer();
Console.WriteLine(t.Tokens.uCalc.Description);
This is the main uCalc object using uCalcSoftware; var uc = new uCalc(); uc.Description = "This is the main uCalc object"; var t = uc.NewTransformer(); Console.WriteLine(t.Tokens.uCalc.Description);
#include
#include "uCalc.h"
using namespace std;
using namespace uCalcSoftware;
int main() {
uCalc uc;
uc.Description("This is the main uCalc object");
auto t = uc.NewTransformer();
cout << t.Tokens().uCalc().Description() << endl;
}
This is the main uCalc object #include <iostream> #include "uCalc.h" using namespace std; using namespace uCalcSoftware; int main() { uCalc uc; uc.Description("This is the main uCalc object"); auto t = uc.NewTransformer(); cout << t.Tokens().uCalc().Description() << endl; }
Imports System
Imports uCalcSoftware
Public Module Program
Public Sub Main()
Dim uc As New uCalc()
uc.Description = "This is the main uCalc object"
Dim t = uc.NewTransformer()
Console.WriteLine(t.Tokens.uCalc.Description)
End Sub
End Module
This is the main uCalc object Imports System Imports uCalcSoftware Public Module Program Public Sub Main() Dim uc As New uCalc() uc.Description = "This is the main uCalc object" Dim t = uc.NewTransformer() Console.WriteLine(t.Tokens.uCalc.Description) End Sub End Module