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

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;
   // Define a variable and retrieve its name from the Item object.
   auto myVarItem = uc.DefineVariable("MyCoolVariable = 10");
   cout << "Item name: " << myVarItem.Name() << endl;
}