RosettaCodeData/Task/Stack/CoffeeScript/stack.coffee

7 lines
97 B
CoffeeScript
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
stack = []
stack.push 1
stack.push 2
console.log stack
console.log stack.pop()
console.log stack