Seems to work
[rops.git] / parser.mli
blob9949060e775856d80950809cc72d5ea020070f99
1 type token =
2 | INT of (int)
3 | SYMBOL of (string)
4 | STRING of (string)
5 | LPAREN
6 | RPAREN
7 | LBRACKET
8 | RBRACKET
9 | DOT
10 | EOF
12 val main :
13 (Lexing.lexbuf -> token) -> Lexing.lexbuf -> Types.scheme_object