Created
October 17, 2009 10:44
-
-
Save myabc/212317 to your computer and use it in GitHub Desktop.
Possibly relating to http://jira.codehaus.org/browse/JRUBY-1587
This file contains hidden or 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
[alexbcoles@mondiale ~]$ jirb | |
irb(main):001:0> -9223372036854775808.class | |
=> Bignum | |
irb(main):002:0> "-9223372036854775808".to_i | |
=> -9223372036854775808 | |
irb(main):003:0> "-9223372036854775808".to_i.class | |
=> Fixnum |
This file contains hidden or 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
[alexbcoles@mondiale ~]$ irb | |
>> -9223372036854775808.class | |
=> Bignum | |
>> "-9223372036854775808".to_i | |
=> -9223372036854775808 | |
>> "-9223372036854775808".to_i.class | |
=> Bignum |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment