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

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;
   auto t = uc.NewTransformer();
   t.FromTo("is {etc} see", "({@Self})");
   cout << t.Transform("This is a test to see how anchors/variables work") << endl;
}