RosettaCodeData/Task/Stack/Elena/stack.elena
2016-12-05 22:15:40 +01:00

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.