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 TRUE tot he top of the boolean stack.")] public class True : BasePair { public override void Implementation(VirtualMachine VM) { VM.BoolStack.Push(true); } public override string ToString() { return "true"; } internal override void Compile(ILGenerator il, Locals locals) { throw new NotImplementedException(); } } }