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

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;
   uCalc::Transformer t;
   // Use {s(1)} to get just the text inside the quotes
   t.FromTo("msg = {@String:s}", "<message>{s(1)}</message>");

   string input = R"(msg = "Welcome to uCalc!")";
   cout << t.Transform(input) << endl;
}