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

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;

   // This example makes the # character behave the same way as quotes
   uc.ExpressionTokens().Add("#([^#]*)#", TokenType::Literal, "", 1).DataType(uc.DataTypeOf("String"));
   cout << uc.EvalStr("#Hello # + #World#") << endl;
}