Skip to content

Instantly share code, notes, and snippets.

@perlpilot
Created May 15, 2013 15:48
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 perlpilot/5584994 to your computer and use it in GitHub Desktop.
Save perlpilot/5584994 to your computer and use it in GitHub Desktop.
Example of Rakudo END phasers running out of order.
/home/duff/tmp
➤ cat foo
use v6;
END { say "tres"; }
use Foo;
END { say "uno"; }
/home/duff/tmp
➤ cat Foo.pm
module Foo;
END { say "dos" }
/home/duff/tmp
➤ perl6 -I. foo
uno
tres
dos
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment