Guest User

Untitled

a guest
Jul 18th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. %{
  2. # include "fb1-5.tab.h"
  3. %}
  4. %%
  5. "+" { return ADD; }
  6. "-" { return SUB; }
  7. "*" { return MUL; }
  8. "/" { return DIV; }
  9. "|" { return ABS; }
  10. [0-9]+ { yylval = atoi(yytext); return NUMBER; }
  11. \n { return EOL; }
  12. [ \t] { }
  13. . { printf("Mystery character %c\n", *yytext); }
  14. %%
Add Comment
Please, Sign In to add comment