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

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;
   uCalc::Transformer t;

   // 1. Set the initial text
   t.Text("The quick brown fox.");

   // 2. Define a rule and transform
   t.FromTo("brown", "red");
   t.Transform();

   // 3. Get the final text
   cout << t.Text() << endl;
}