EChandraSutraDhar_lib.InterpreterCopyright 2025-2026, Ram Prosad Chandra Sutra Dhar
SPDX-License-Identifier: LGPL-3.0-or-later
type value_error = | UnboundVariable of Ast.ident| TypeError| DivisionByZeroError| PatternMatchingError| LHStype value = | ValueInt of Base.int| ValueBool of Base.bool| ValueString of Base.string| ValueUnit| ValueClosure of Ast.is_rec
* Ast.pattern
* Ast.pattern Base.list
* Ast.expr
* env| ValueTuple of value * value * value Base.list| ValueList of value Base.list| ValueOption of value Base.option| ValueBuiltin of value -> (value, value_error) Base.Result.tval pp_value_error : Stdlib.Format.formatter -> value_error -> Base.unitmodule Inter : sig ... end