using System; using System.Collections.Generic; using System.Text; using Sunweaver.Commands.Attributes; namespace Sunweaver.Commands.BinaryMath { [BasePair] public class swap : Abstracts.BinaryOperation { public override void Operation(long a, long b) { VM.Stack.Push(b); VM.Stack.Push(a); } } }