Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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

Last synced: 2 months 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