module Compiler_interp:sig
..end
type
value =
| |
VInt of |
| |
VBool of |
| |
VArray of |
| |
VClosure of |
val pp_value : Format.formatter -> value -> Ppx_deriving_runtime.unit
val show_value : value -> Ppx_deriving_runtime.string
val eval : Compiler_util.exp -> value