Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. %token DECIMAL
  2. %token OCTAL
  3. %token HEXA
  4. %token LETTER
  5.  
  6. %token SEMICOLON
  7. %token BLANKID
  8. %token PACKAGE
  9. %token RETURN
  10. %token AND
  11. %token STAR
  12. %token COMMA
  13. %token DIV
  14. %token ASSIGN
  15. %token EQ
  16. %token GE
  17. %token GT
  18. %token LBRACE
  19. %token LE
  20. %token LPAR
  21. %token LSQ
  22. %token LT
  23. %token MINUS
  24. %token MOD
  25. %token NE
  26. %token NOT
  27. %token OR
  28. %token PLUS
  29. %token RBRACE
  30. %token RPAR
  31. %token RSQ
  32. %token ELSE
  33. %token FOR
  34. %token IF
  35. %token VAR
  36. %token INT
  37. %token FLOAT32
  38. %token BOOL
  39. %token STRING
  40. %token PRINT
  41. %token PARSEINT
  42. %token FUNC
  43. %token CMDARGS
  44.  
  45. %token INTLIT
  46.  
  47. %token REALLIT
  48. %token RESERVED
  49. %token ESCSEQ
  50. %token ID
  51. %token NEWLINE
  52. %token IGNORE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement