Created
June 16, 2016 03:06
-
-
Save lulalala/57506dbfc7dfa3affc28112fec49f113 to your computer and use it in GitHub Desktop.
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
irb(main):016:0> Money.new(1.5) == 0.015.to_money | |
=> true | |
irb(main):017:0> Money.new(1.5).instance_variable_get(:@fractional).to_s | |
=> "1.5" | |
irb(main):018:0> 0.015.to_money.instance_variable_get(:@fractional).to_s | |
=> "2.0" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment