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

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;
   uc.DefineFunction("Area(length, width) = length * width");
   cout << uc.Eval("Area(4, 5)") << endl;
}