5 lines
134 B
Text
5 lines
134 B
Text
stack := IntStack->New();
|
|
stack->Push(13);
|
|
stack->Push(7);
|
|
(stack->Pop() + stack->Pop())->PrintLine();
|
|
stack->IsEmpty()->PrintLine();
|