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

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;
   auto intType = uc.DataTypeOf(BuiltInType::Integer_32);
   cout << "The canonical name for Integer_32 is: " << intType.Name() << endl;

   auto strType = uc.DataTypeOf(BuiltInType::String);
   cout << "The canonical name for String is: " << strType.Name() << endl;
}