RosettaCodeData/Task/Stack/Elena/stack.elena

13 lines
209 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
public program()
{
var stack := new system'collections'Stack();
stack.push:2;
var isEmpty := stack.Length == 0;
var item := stack.peek(); // Peek without Popping.
item := stack.pop()
}