Project

General

Profile

Bug #13802 ยป bug.rb

This file contains script which produces unexpected result as per description - lingarajg (Lingaraj Gowdar), 08/10/2017 08:34 PM

 
y=1

loop do
y += 1
next unless y%2==0
puts y
break if y > 10
end
    (1-1/1)