RosettaCodeData/Task/Exceptions/Ruby/exceptions-6.rb

8 lines
56 B
Ruby

def foo
throw :done
end
catch :done do
foo
end