// Subtracts the two top most numbers on the stack
public static class Subtract implements Operator {
public void perform(Funge funge) {
Stack stack = funge.getStackStack().getStack();
stack.push(0 - (stack.pop() - stack.pop()));
}
public String getDescription() {
return "Pops b, a off the stack. Pushes a - b";
}