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

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;
   uCalc::Transformer t;
   t.FromTo("{@sq}", "S");

   // Only the single quote should be replaced
   cout << t.Transform(R"('Hello' and "World")") << endl;
}