RosettaCodeData/Task/Stack/CoffeeScript/stack-1.coffeescript
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

6 lines
97 B
Text

stack = []
stack.push 1
stack.push 2
console.log stack
console.log stack.pop()
console.log stack