14 lines
263 B
Text
14 lines
263 B
Text
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();
|
|
}
|
|
}
|