using System; using System.Collections.Generic; using System.Reflection.Emit; using System.Text; using Sunweaver.Commands.Attributes; using Sunweaver.VM; namespace Sunweaver.Commands { [BasePair("pushes FALSE on to the boolean stack.")] public class False : BasePair { public override void Implementation(VirtualMachine VM) { VM.BoolStack.Push(false); } public override string ToString() { return "false"; } internal override void Compile(ILGenerator il, Locals locals) { throw new NotImplementedException(); } } }