DEQUEUE queuenameOutputs the least recent (oldest) thing that was enqueued onto a queue with QUEUE. This value is removed from the queue.
MAKE "myqueue [] QUEUE "myqueue 1 QUEUE "myqueue 2 QUEUE "myqueue 3 SHOW :myqueue[1 2 3]SHOW DEQUEUE "myqueue1SHOW :myqueue[2 3]SHOW DEQUEUE "myqueue2SHOW :myqueue[3]