Created
April 18, 2010 21:49
-
-
Save pcyu16/370572 to your computer and use it in GitHub Desktop.
basic lex file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| %{ | |
| int yywarp(void); | |
| %} | |
| %% | |
| %% | |
| int main() | |
| { | |
| yylex(); | |
| return 0; | |
| } | |
| int yywrap(void) | |
| { | |
| return 1; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment