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

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;
   uCalc::Transformer t;
   // Normalize 'true-like' and 'false-like' values
   t.FromTo("{ True | Yes | On }", "TRUE");
   t.FromTo("{ False | No | Off }", "FALSE");

   cout << t.Transform("System is On and Power is False") << endl;
   cout << t.Transform("Access: Yes, Admin: No") << endl;
}