8 lines
56 B
Ruby
8 lines
56 B
Ruby
|
|
def foo
|
||
|
|
throw :done
|
||
|
|
end
|
||
|
|
|
||
|
|
catch :done do
|
||
|
|
foo
|
||
|
|
end
|