Skip to content

Instantly share code, notes, and snippets.

@myabc
Created October 17, 2009 10:44
Show Gist options
  • Save myabc/212317 to your computer and use it in GitHub Desktop.
Save myabc/212317 to your computer and use it in GitHub Desktop.
[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
[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