Advertisement
Guest User

Untitled

a guest
Aug 18th, 2015
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. %{
  2. open Ast
  3. open Printf
  4. open Tools
  5. let symbol_table = Hashtbl.create 16
  6. %}
  7.  
  8. %token <float Vector.vector> VECTORFLOAT
  9. %token <string Vector.vector> VECTORSTRING
  10. %token <int> INT
  11. %token <float> FLOAT
  12. %token <string> STRING
  13. %token <string> ID
  14. %token <bool> BOOL
  15.  
  16. ...
  17. ...
  18. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement