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

using namespace std;
using namespace uCalcSoftware;

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

   // Angle brackets are not included in {@Bracket} by default
   cout << t.Transform("vector <int>") << endl;
}