#include #include "uCalc.h" using namespace std; using namespace uCalcSoftware; int main() { uCalc uc; uCalc::Transformer t; // Convert any quote character found to a double quote t.FromTo("{@QuoteChar}", R"(")"); string input = R"(msg = 'Hello'; val = "World";)"; cout << t.Transform(input) << endl; }