using System; using System.Collections.Generic; using System.Text; namespace Sunweaver.Commands.Comparisons { [Commands.Attributes.BasePair] public class GreaterEqual : Commands.Abstracts.BinaryOperation { public override void Operation(long a, long b) { VM.BoolStack.Push(a >= b); } public override string ToString() { return ">="; } } }