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

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;
   // 1. Parse the expression into a reusable object.
   auto parsedExpr = uc.Parse("100 / 4");

   // 2. Evaluate the pre-parsed object.
   cout << "Result: " << parsedExpr.Evaluate() << endl;
}