RosettaCodeData/Task/Queue-Definition/Zkl/queue-definition-1.zkl

7 lines
136 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
class Queue{
var [const] q=List();
fcn push { q.append(vm.pasteArgs()) }
fcn pop { q.pop(0) }
fcn empty { q.len()==0 }
}