RosettaCodeData/Task/Stack/Elena/stack.elena
2017-09-25 22:28:19 +02:00

9 lines
183 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.