#include #include "uCalc.h" using namespace std; using namespace uCalcSoftware; int main() { uCalc uc; auto myVar = uc.DefineVariable("x = 10"); myVar.Description("Represents the user's current score."); cout << "Variable Name: " << myVar.Name() << endl; cout << "Description: " << myVar.Description() << endl; }