class Queue{ var [const] q=List(); fcn push { q.append(vm.pasteArgs()) } fcn pop { q.pop(0) } fcn empty { q.len()==0 } }