Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- %option noyywrap
- %%
- boolean|float|int|if|char printf("keywords");
- [0-9][0-9]* printf("constants");
- [a-zA-Z][a-zA-Z0-9]* printf("identifiers");
- %%
- int main()
- {
- yylex();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement