RosettaCodeData/Task/Exceptions/Ruby/exceptions-6.rb
2023-07-01 13:44:08 -04:00

7 lines
56 B
Ruby

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