Advertisement
matiashurtado

Untitled

May 20th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. %}
  2. %start list
  3.  
  4. %token NUMBER
  5. %token LETTER
  6.  
  7. %left '&' '|' '~'
  8. %left '+' '-'
  9. %left '*' '/' '%'
  10.  
  11. %%
  12. list:
  13. | list ArithmeticExpression
  14. | list error
  15. { yyerror(); }
  16. ArithmeticExpression: E
  17. {
  18. printf("resultado = ");
  19. printb($$);
  20. }
  21.  
  22. E: E'+'E { $$ = strbinadd($1,$3); }
  23. ;
  24. %%
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement