#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;
}