public MondValue Call(MondValue closure, params MondValue[] arguments) { return _machine.Call(closure, arguments); }
public MondValue this[MondValue index] { get { return _machine.Global[index]; } set { _machine.Global[index] = value; } }
public MondValue Call(MondValue closure, params MondValue[] arguments) { return(_machine.Call(closure, arguments)); }
/// <summary> /// Calls a Mond function. /// </summary> public MondValue Call(MondValue function, params MondValue[] arguments) { return _machine.Call(function, arguments); }
public MondValue this[MondValue index] { get { return(_machine.Global[index]); } set { _machine.Global[index] = value; } }