using uCalcSoftware; var uc = new uCalc(); // Define a variable and chain the Description() call to set metadata var myVar = uc.DefineVariable("x = 10").SetDescription("Stores the current iteration count."); // Retrieve and display the description Console.WriteLine($"Description for 'x': {myVar.Description}");