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

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;
   uCalc::Transformer t;
   t.FromTo("{@Number}", "FOUND");

   // The '2' in 'var2' and the '100' in the string should NOT match
   cout << t.Transform(R"(var2 = "count is 100" + 50)") << endl;
}