Last active
August 29, 2015 14:22
-
-
Save raydiak/46b0727fddfd3c0b659e to your computer and use it in GitHub Desktop.
restricted weirdness
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
x@patience:~/data/projects/perl6/panda > rakudo/install/bin/perl6 -e 'my $*RESTRICTED; say EVAL "(:a(1):b(2))"' | |
a => 1 | |
x@patience:~/data/projects/perl6/panda > rakudo/install/bin/perl6 -e 'say EVAL "(:a(1):b(2))"' | |
a => 1 b => 2 | |
x@patience:~/data/projects/perl6/panda > rakudo/install/bin/perl6 -e 'my $*RESTRICTED; say do { (:a(1):b(2)) }' | |
a => 1 b => 2 | |
x@patience:~/data/projects/perl6/panda > rakudo/install/bin/perl6 -e 'my $*FOO; say do { (:a(1):b(2)) }' | |
a => 1 b => 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment