mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
15 lines
159 B
Ruby
15 lines
159 B
Ruby
|
i=0
|
||
|
while i<6000000 # while loop 2
|
||
|
case :foo
|
||
|
when :bar
|
||
|
raise
|
||
|
when :baz
|
||
|
raise
|
||
|
when :boo
|
||
|
raise
|
||
|
when :foo
|
||
|
i+=1
|
||
|
end
|
||
|
end
|
||
|
|