#include <iostream>
#include "uCalc.h"

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;
   auto expr = uc.Parse("1 + 2");
   cout << expr.EvaluateStr() << endl;

   // Manually release the expression when it's no longer needed.
   expr.Release();
}