Quick actions

cmd+k|ctrl+k

Navigation

Languages

Floating Point Math (0.1+0.2=0.3?)

Snippet info

Language

Ruby

Visibility

public

Author

zostay

Created

2016-07-09T02:09:42Z

Updated

2016-07-09T02:20:30Z

puts 0.1 + 0.2 == 0.3 ? "True" : "False"
# False
INFO