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

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;
   cout << "Square root of 81 is: " << uc.Eval("Sqrt(81)") << endl;
   cout << "Is 10 greater than 5? " << uc.EvalStr("IIf(10 > 5, 'Yes', 'No')") << endl;
   cout << "String length: " << uc.Eval("Length('uCalc rocks!')") << endl;
}