RosettaCodeData/Task/Queue-Usage/Phix/queue-usage.phix

8 lines
161 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
?empty() -- 1
push(5)
?empty() -- 0
push(6)
?pop() -- 5
?pop() -- 6
?empty() -- 1