POP stackname
Outputs the most recent thing that was pushed on the stack named stackname (using PUSH) and removes that member from the stack.
MAKE "mystack [] PUSH "mystack 1 PUSH "mystack 2 PUSH "mystack 3 SHOW :mystack[3 2 1]SHOW POP "mystack3SHOW :mystack[2 1]SHOW POP "mystack2SHOW :mystack[1]