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

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;
   auto t = uc.NewTransformer();

   t.FromTo("a {txt} c", "<{@Self}>"); // Quoted text treated as 1 token
   t.FromTo("x {txt`} z", "<{@Self}>"); // Quotes treated as ordinary chars

   cout << t.Transform("a 'b c' b c :: x 'y z' y z") << endl;
}