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 "mystack
3SHOW :mystack
[2 1]SHOW POP "mystack
2SHOW :mystack
[1]