#include #include "uCalc.h" using namespace std; using namespace uCalcSoftware; int main() { uCalc uc; auto t = uc.NewTransformer(); // Define a rule to swap the name into a greeting t.FromTo("Hello {name}", "Greetings, {name}!"); cout << t.Transform("Hello World") << endl; }