You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdeedu/kalzium/src/solver/parser.mli

16 lines
239 B

type token =
| INT of (int)
| PLUS
| MINUS
| LPAREN
| RPAREN
| LBRACKET
| RBRACKET
| EOF
| CAPITAL of (string)
| MINOR of (string)
| ARROW
val main :
(Lexing.lexbuf -> token) -> Lexing.lexbuf -> Chemset.listitems