Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- %{
- #include <stdlib.h>
- #include "part1.tab.h"
- #define YYSTYPE long long
- %}
- %%
- [0-9]+ { yylval = atoi( yytext ); return (INT); }
- [+*()] { return (yytext[0]); }
- [\n] { return (EOL); }
- [ \t]+ ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement