#include #include "uCalc.h" using namespace std; using namespace uCalcSoftware; int main() { uCalc uc; // Define a variable and a function using the core Define method uc.Define("Variable: my_var = 100"); uc.Define("Function: square(x) = x * x"); cout << uc.Eval("my_var * square(5)") << endl; }