RosettaCodeData/Task/Flow-control-structures/Ruby/flow-control-structures-3.rb
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

17 lines
224 B
Ruby

def some_method
# ...
if some_condition
throw :get_me_out_of_here
end
# ...
end
catch :get_me_out_of_here do
for ...
for ...
some_method
end
end
end
puts "continuing after catching the throw"