Last active
August 29, 2015 14:19
-
-
Save ybur-yug/0f400b63c8ed8871aa5f to your computer and use it in GitHub Desktop.
floats? wat?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0 == 0.0000000000000000000000000000000000000000000000000000000000001 | |
# => false | |
0 == 0.00000000000000000000000000000000000000000000000000000000000001 | |
# => true | |
0.00000000000000000000000000000000000000000000000000000000000001.to_s.count("0") | |
# => 2 | |
0.00000000000000000000000000000000000000000000000000000000000001.to_s | |
# => "0.0" | |
0.0000000000000000000000000000000000000000000000000000000000001.to_s | |
# => "1.0e-61" | |
0 - 0.0 / 0 | |
# => NaN | |
(1 - 0.0) / 0 | |
# => Infinity | |
(1 - 0) / 0 | |
# => ZeroDivisionError: divided by 0 | |
# from (irb):11:in `/' | |
# from (irb):11 | |
# from /usr/bin/irb:11:in `<main>' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment