Comparing Floating-Point Numbers
puts 1.8 + 0.1 # => 1.9 puts 1.8 + 0.1 == 1.9 # => false puts 1.8 + 0.1 > 1.9 # => true