using System; using System.Collections.Generic; using System.Text; using Sunweaver.Commands.Attributes; using Sunweaver.VM; using System.Reflection.Emit; namespace Sunweaver.Commands { [BasePair("Returns the minimum of the top two values of the integer stack.")] public class min : Abstracts.BinaryOperation { public override void Operation(long a, long b) { VM.Stack.Push(Math.Min(a, b)); } public override void CompileOperation(ILGenerator il, Locals locals) { throw new NotImplementedException(); } } }