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

alexandrustoica/flux-lex-yacc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 */