Skip to content

Instantly share code, notes, and snippets.

Created March 21, 2014 03:25
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 anonymous/9678937 to your computer and use it in GitHub Desktop.
Save anonymous/9678937 to your computer and use it in GitHub Desktop.
pir compilation WAT involving the number 38016083
# grep . /tmp/?.pm6
/tmp/S.pm6:use T;
/tmp/T.pm6:my $i := (1,38016083,2);
/tmp/T.pm6:$i.perl.say;
# PERL6LIB=/tmp/ perl6 /tmp/T.pm6
(1, 38016083, 2)
# PERL6LIB=/tmp/ perl6 /tmp/S.pm6
(1, 380160830, 2)
# rm /tmp/S.pir
# PERL6LIB=/tmp/ perl6 /tmp/S.pm6
(1, 380160830, 2)
# rm /tmp/T.pir
# PERL6LIB=/tmp/ perl6 /tmp/S.pm6
(1, 38016083, 2)
This is on Linux amd64
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment