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

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;
   auto t = uc.NewTransformer();
   auto rule = t.FromTo("Hello {name}", "Greetings, {name}!");

   cout << "Rule pattern is: '" << rule.Pattern() << "'" << endl;
}