Module Computor.Parser

type token =
| VAR of string
| STAR
| PLUS
| MINUS
| INT of int
| FLOAT of float
| EQ
| EOF
| CIRCUM
exception Error
val equation : ( Stdlib.Lexing.lexbuf -> token ) -> Stdlib.Lexing.lexbuf -> Ast.equation