RosettaCodeData/Task/Stack/Elena/stack.elena
2026-02-01 16:33:20 -08:00

12 lines
210 B
Text

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()
}