#include #include "uCalc.h" using namespace std; using namespace uCalcSoftware; int main() { uCalc uc; // Define a variable and chain the Description() call to set metadata auto myVar = uc.DefineVariable("x = 10").SetDescription("Stores the current iteration count."); // Retrieve and display the description cout << "Description for 'x': " << myVar.Description() << endl; }