Created
July 2, 2012 19:04
-
-
Save ajs/3035007 to your computer and use it in GitHub Desktop.
Perl6 PIR generation problem
This file contains 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
# A trivial program that breaks when run like so: | |
# perl6 --target=PIR --output=broken.pir broken.p6 | |
# parrot broken.pir | |
use v6; | |
BEGIN { say "begin" } | |
START { say "start" } | |
ENTER { say "enter" } | |
say "'run' time"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment