using System; using System.Collections.Generic; using System.Text; namespace DNAModule.Sunweaver.Commands.UnaryLogic { [Attributes.BasePair] public class not : Abstracts.UnaryBooleanLogic { public override void Operation(bool a) { VM.BoolStack.Push(!a); } } }