using System; using System.Collections.Generic; using System.Text; namespace Sunweaver.Commands.BinaryLogic { [Attributes.BasePair] public class xor : Abstracts.BinaryBooleanLogic { public override void Operation(bool a, bool b) { VM.BoolStack.Push(a ^ b); } } }