Project

General

Profile

Bug #10592

Updated by nobu (Nobuyoshi Nakada) over 9 years ago

~~~ruby 
 1.1+1.1+1.1 = 3.3 
 ~~~ 

 However in the current 2.1.5 this is what happens: 

 ~~~ruby 
 dmolnar@domalaptop:~> irb 
 2.1.5 :001 > 1.1+1.1+1.1 
  => 3.3000000000000003  
 2.1.5 :002 > 
 ~~~ 

Back