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

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;
   uCalc::Transformer t;
   t.FromTo("fox", "CAT");

   // The 'fox' inside the quotes is not replaced.
   cout << t.Transform("The quick brown fox jumps over the 'lazy fox'.") << endl;
}