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

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;
   uCalc::Transformer t;
   // This rule only targets the alphanumeric token 'x'.
   t.FromTo("x", "value");
   auto code = R"(x = 5; print("The value of x is...");)";
   cout << t.Transform(code) << endl;
}