RosettaCodeData/Task/Stack/Brat/stack.brat

7 lines
90 B
Text
Raw Permalink Normal View History

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