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

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;
   auto myInt = uc.DefineVariable("myInt As Int");
   auto myIntType = myInt.DataType();
   cout << "Variable 'myInt' has type: " << myIntType.Name() << endl;
}