Stack object.
make System.collections.stack(): Class constructor.list: List of items in the stack.count(): Return number of items on the stack.pop(): Pop item from stack.push(v): Push item onto stack.v: Item to push onto stack.top(): Return topmost item on stack.