Skip to content

Instantly share code, notes, and snippets.

@ajs
Created July 2, 2012 19:04
Show Gist options
  • Save ajs/3035007 to your computer and use it in GitHub Desktop.
Save ajs/3035007 to your computer and use it in GitHub Desktop.
Perl6 PIR generation problem
# 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