gcc plus plus, a compiler for a C-like language
- make sure to have GCC, bison and flex are installed on tour machine
- clone the repo
- run bison -d parser.y
- run lex lexer.l
- run gcc lex.yy.c parser.tab.c
- a.out file will be generated
- run ./a.out and write testcases in the standard I/O (terminal)