/* demo.cc */ #include #include "parser/parser.h" using namespace std; int main(int argc, char **argv) { cout << "Enter lines containing NR + NR =\n" "The numbers should be integral numbers.\n" "Other non-empty lines should result in a `syntax error'\n" "Blanks and tabs are ignored. Use q, ^c or ^d to end the program\n" "Use any program argument to view parser debug output\n"; Parser parser; parser.setDebug(argc > 1); cout << "Parser returns " << parser.parse() << endl; return 0; }