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

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;
   uCalc::Transformer t;

   auto tokens = t.Tokens();
   cout << "Total token definitions: " << tokens.Count() << endl;
   cout << "--- Token List ---" << endl;

   auto i = 0;

   for ( i = 0; i <= tokens.Count() - 1; i++) {
      auto tokenItem = tokens.At(i);
      cout << i << ": " << tokenItem.Name() << endl;
   }
}