using System; using System.Collections.Generic; using System.Reflection.Emit; using System.Text; using Sunweaver.Commands.Attributes; using Sunweaver.DataPrototypes; namespace Sunweaver.Commands { [BasePair] public class True : Abstracts.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(); } } }