Skip to content

Instantly share code, notes, and snippets.

@igaiga
Created October 29, 2010 01:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save igaiga/652728 to your computer and use it in GitHub Desktop.
Save igaiga/652728 to your computer and use it in GitHub Desktop.
float.rb
x = 0.0
10.times do
x += 0.1
end
p x
if x == 1.0
puts 'true'
else
puts 'false'
end
# => 1.0
# => false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment