Module Interpret_lib.Interpret
type error = | Parse_error of string| Unbound_variable of string| Division_by_zero| Not_a_function| Type_error of string| Steps_exceeded
type state = {steps : int;output : string list;
}val pp_value : Stdlib.Format.formatter -> value -> unitval run : ?steps:int -> string -> (value * string list, error) Stdlib.result