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

https://github.com/adrienbrault/Lex-Sample

XCode 4 lex sample project
https://github.com/adrienbrault/Lex-Sample

Last synced: 11 days ago
JSON representation

XCode 4 lex sample project

Awesome Lists containing this project

README

        

If you want to compile a lex programm withtout XCode, here's how to do it:

$ vi flex.l
$ lex -o flex.yy.c flex.l
$ gcc -o flex.bin flex.yy.c
$ ./flex.bin