9 lines
186 B
Text
9 lines
186 B
Text
#var stack := system'collections'Stack new.
|
|
|
|
stack push:2.
|
|
|
|
#var isEmpty := stack length == 0.
|
|
|
|
#var item := stack peek. // Peek without Popping.
|
|
|
|
item := stack pop.
|