Warning, /education/kalzium/src/solver/parser.mli is written in an unsupported language. File is not indexed.

0001 type token =
0002   | INT of (int)
0003   | PLUS
0004   | MINUS
0005   | LPAREN
0006   | RPAREN
0007   | LBRACKET
0008   | RBRACKET
0009   | EOF
0010   | CAPITAL of (string)
0011   | MINOR of (string)
0012   | ARROW
0013 
0014 val main :
0015   (Lexing.lexbuf  -> token) -> Lexing.lexbuf -> Chemset.listitems