RosettaCodeData/Task/Queue-Usage/Objeck/queue-usage.objeck

15 lines
263 B
Text
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
class Test {
function : Main(args : String[]) ~ Nil {
q := Struct.IntQueue->New();
q->Add(1);
q->Add(2);
q->Add(3);
q->Remove()->PrintLine();
q->Remove()->PrintLine();
q->Remove()->PrintLine();
q->IsEmpty()->PrintLine();
}
}