12 lines
209 B
Text
12 lines
209 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()
|
|
}
|