using System; using System.Collections.Generic; using System.Reflection.Emit; using System.Text; using Sunweaver.Commands.Abstracts; using Sunweaver.Commands.Attributes; using Sunweaver.VM; namespace Sunweaver.Commands { [BasePair(@"Set the DNA to stop executing until a ""start"" statement is encountered.")] public class stop : BasePair { public override void Implementation(Sunweaver.VM.VirtualMachine VM) { VM.Executing = false; } internal override void Compile(ILGenerator il, Locals locals) { throw new NotImplementedException(); } } }