Skip to content

Instantly share code, notes, and snippets.

@kingsleyh
Created January 22, 2018 12:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kingsleyh/ee5caf72c0d6e6d8789395af2af10835 to your computer and use it in GitHub Desktop.
Save kingsleyh/ee5caf72c0d6e6d8789395af2af10835 to your computer and use it in GitHub Desktop.
crystal wierdness
base = 1
[1,2,3,4,5,6,7].each do |n|
base *= 256
p base
end
#256
#65536
#16777216
#0
#0
#0
#0
base = 1
[1,2,3,4,5,6,7].each do |n|
base *= 256
p base
end
#256
#65536
#16777216
#4294967296
#1099511627776
#281474976710656
#72057594037927936
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment