Skip to content

Instantly share code, notes, and snippets.

@perlpilot
Created March 3, 2016 19:15
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/018013c0766796b92893 to your computer and use it in GitHub Desktop.
Save perlpilot/018013c0766796b92893 to your computer and use it in GitHub Desktop.
➤ perl6
> module Foo::Bar { sub f() is export {} }; my \module = Foo::Bar; say module::EXPORT::.keys;
Could not find symbol '&EXPORT'
in block <unit> at <unknown file> line 1
>
➤ perl6
> module Foo::Bar { sub f() is export {} }; my \module = Foo::Bar;
> say module::EXPORT::.keys;
(DEFAULT ALL)
>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment