#include <iostream>
#include "uCalc.h"

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;
   auto t = uc.NewTransformer();
   t.uCalc().DefineVariable("xyz = 123");

   t.FromTo("xyz", "{@Eval: xyz * 10}");
   cout << t.Transform("The answer is: xyz") << endl;
}