Skip to content
This repository has been archived by the owner on Aug 20, 2020. It is now read-only.

Latest commit

 

History

History
10 lines (8 loc) · 182 Bytes

README.md

File metadata and controls

10 lines (8 loc) · 182 Bytes

flex.lex.yacc

Simple Scanner && Parser with lex and yacc.

Build LEX

$ lex flex.l
$ gcc flex.c lex.yy.c -o flex.out -Wall
$ ./flex.out < test.flex  /* for testing */