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

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;
   uc.Description("Main uCalc Instance");

   // Get the DataType object for Int32
   auto intType = uc.DataTypeOf(BuiltInType::Integer_32);

   // Use the .uCalc() method to get back to the parent instance and read its description.
   cout << intType.uCalc().Description() << endl;
}