Advertisement
Guest User

Ramon Snir

a guest
Sep 6th, 2010
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. module Core.Parser
  2. type token =
  3. | EOF
  4. | NL
  5. | DEFINE
  6. | AS
  7. | ENDDEFINE
  8. | CTOR
  9. | FOR
  10. | TO
  11. | INC
  12. | DO
  13. | WHILE
  14. | NEXT
  15. | NEW
  16. | HASH
  17. | IF
  18. | THEN
  19. | ELSE
  20. | ENDIF
  21. | ASSIGN
  22. | COMMA
  23. | RP
  24. | LP
  25. | NUMBER of (System.Double)
  26. | USE of (System.String)
  27. | OP of (System.String)
  28. | STRING of (System.String)
  29. | ID of (System.String)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement