using System; using System.Collections.Generic; using System.Text; using Sunweaver.Commands.Attributes; namespace Sunweaver.Commands.UnaryMath { [BasePair] public class abs : Abstracts.UnaryOperation { public override void Operation(long a) { VM.Stack.Push(Math.Abs(a)); } } }