Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- %option noyywrap noinput nounput
- %%
- [0-9]+ { yylval = atoi(yytext); return KAZU; }
- [\(\)\+\-\*\/;] { return yytext[0]; }
- mplus { return MPLUS; }
- mminus { return MMINUS; }
- mclear { return MCLEAR; }
- mprint { return MPRINT; }
- [ \t\n]+|.|\/\/.* /* do nothing */
- %%
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement