Skip to content

Instantly share code, notes, and snippets.

@Tux
Created June 23, 2015 15:51
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 Tux/7fef7af3b56481f83442 to your computer and use it in GitHub Desktop.
Save Tux/7fef7af3b56481f83442 to your computer and use it in GitHub Desktop.
$ perl6 -e'my int $i = int.Range.min; say $i; say $i +> 16'
-9223372036854775808
-140737488355328
$ perl6 -e'my int $i = int.Range.min; say $i; say $i +> 32'
-9223372036854775808
-2147483648
$ perl6 -e'my int $i = int.Range.min; say $i; say $i +> 63'
-9223372036854775808
-1
$ perl6 -e'my int $i = int.Range.min; say $i; say $i +> 64'
-9223372036854775808
-9223372036854775808
$ perl6 -e'my int $i = int.Range.min; say $i; say $i +> -32'
-9223372036854775808
-39614081257132168796771975168
$ perl6 -e'my int $i = int.Range.min; say $i; say $i +> -64'
-9223372036854775808
-170141183460469231731687303715884105728
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment