Module Compiler_interp

module Compiler_interp: sig .. end

type value = 
| VInt of int
| VBool of bool
| VArray of value array
| VClosure of (value list -> value)
val pp_value : Format.formatter -> value -> Ppx_deriving_runtime.unit
val show_value : value -> Ppx_deriving_runtime.string
val eval : Compiler_util.exp -> value