Advertisement
Guest User

Untitled

a guest
Dec 17th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. itemcode = {
  2. # identifiers and constants
  3. "id": 10,
  4. "const": 11,
  5.  
  6. # reserved keywords
  7. "with": 100,
  8. "as": 101,
  9. "int": 102,
  10. "float": 103,
  11. "string": 104,
  12. "if": 105,
  13. "else": 106,
  14. "while": 107,
  15. "read": 108,
  16. "write": 109,
  17.  
  18. # operators
  19. "=": 200,
  20. "==": 201,
  21. "!=": 202,
  22. "<": 203,
  23. ">": 204,
  24. "<=": 205,
  25. ">=": 206,
  26. "+": 207,
  27. "-": 208,
  28. "*": 209,
  29. "/": 210,
  30. "%": 211,
  31. "**": 212,
  32.  
  33. # separators
  34. ":": 300,
  35. ",": 301,
  36. "&": 302
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement