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

https://github.com/anirban166/cs-411-assignments


https://github.com/anirban166/cs-411-assignments

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

          

Create an executable and run in OS X using:

lex filename.l
gcc lex.yy.c -ll -o filename
./filename
# only Lex.

lex filename.l
yacc -d filename.y
gcc lex.yy.c y.tab.c -ll -ly -o filename
./filename
# Lex + Yacc.