An open API service indexing awesome lists of open source software.

https://github.com/noot/csc467-lab2

implementation of a parser
https://github.com/noot/csc467-lab2

Last synced: about 2 months ago
JSON representation

implementation of a parser

Awesome Lists containing this project

README

          

to compile scanner.l: `flex scanner.l`

to compile parser.y: `bison -d parser.y`

to compile generated c files: `gcc lex.yy.c parser.tab.c`

to make project: `make`

to run compiler467 with trace scanner and input file: `./compiler467 -Tn test.in`