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