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

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;
   uCalc::Transformer t;
   auto tokens = t.Tokens();

   // Set a description
   tokens.Description("Default token set for general purpose parsing.");

   // Get the description
   cout << tokens.Description() << endl;
}