RosettaCodeData/Task/Queue-Usage/Quackery/queue-usage.quackery

8 lines
171 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
[ [] ] is queue ( --> q )
[ nested join ] is push ( q x --> q )
[ behead ] is pop ( q --> q x )
[ [] = ] is empty? ( q --> b )