RosettaCodeData/Task/Stack/Brat/stack.brat

7 lines
90 B
Text
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
stack = []
stack.push 1
stack.push 2
stack.push 3
until { stack.empty? } { p stack.pop }