using System; using System.Collections.Generic; using System.Reflection.Emit; using System.Text; using Sunweaver.VM; namespace Sunweaver.Commands { [Attributes.BasePair("Duplicate the top value of the integer stack.")] public class dup : Abstracts.UnaryOperation { public override void Operation(long a) { VM.Stack.Push(a); VM.Stack.Push(a); } } }