Skip to content

Instantly share code, notes, and snippets.

@dnovais
Created July 5, 2018 21:40
Show Gist options
  • Save dnovais/16ea3f52adf0c32cdde1462057746c51 to your computer and use it in GitHub Desktop.
Save dnovais/16ea3f52adf0c32cdde1462057746c51 to your computer and use it in GitHub Desktop.
Curiosity about Ruby

Curiosidade sobre o Ruby

Nas versões <= 2.3

10.class
=> Fixnum
1000000000.class
=> Bignum

Nas versões maiores

10.class
=> Integer
1000000000.class
=> Integer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment