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

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;
   auto intType = uc.DataTypeOf(BuiltInType::Integer_32);

   // Get the Item representation of the DataType
   auto itemHandle = intType.Item();

   cout << "Data Type Name via Item: " << itemHandle.Name() << endl;
}