I am working with method mm in ruby 1.9.2 it behaves so weird, instead of the expected result 1.9.2=>10 I am getting
ELSE **
1.9.2=>8
Any idea of what is going on?
class A
def mm(data)
begin
sendLen = data
return sendLen
rescue Exception
STDOUT.write("Rescue *#{$!}*\n")
else
STDOUT.write("ELSE *#{$!}*\n")
end
#sendLen
end
end # class A
a = A.new
print "#{RUBY_VERSION}=>#{a.mm(10)}\n"
With 1.8.7 I am getting expected result
1.8.7=>10