#include #include "uCalc.h" using namespace std; using namespace uCalcSoftware; int main() { uCalc uc; uc.DefineConstant("PI = 3.14159"); cout << uc.Eval("2 * PI") << endl; }