i = 0
while i < 10 do

  puts i
  
  class Foo
    break    
  end

  i += 1
end