public static class Clone implements Operator {
public void perform(Funge funge) {
Stack stack = funge.getStackStack().getStack();
long a = stack.pop();
stack.push(a);
stack.push(a);
}
public String getDescription() {
return "Clones the first element on the stack";