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

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;
   auto t = uc.NewTransformer();
   t.FromTo("a [{txt}] b", "a, {txt:{txt}, }b");
   cout << t.Transform("a b") << endl;
   cout << t.Transform("a x b") << endl;


}