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

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;
   auto t = uc.NewTransformer();
   auto myRule = t.FromTo("Hello", "Hi");
   myRule.Description("Simple greeting replacement");

   cout << "Rule Pattern: " << myRule.Pattern() << endl;
   cout << "Rule Description: " << myRule.Description();
}