Skip to content

Instantly share code, notes, and snippets.

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 zoffixznet/55d55bdac41aad2feac7a98ed2925754 to your computer and use it in GitHub Desktop.
Save zoffixznet/55d55bdac41aad2feac7a98ed2925754 to your computer and use it in GitHub Desktop.
sub meow is export { say "meow" }
C:\Users\zoffix>ls *.pm6
foo.pm6
C:\Users\zoffix>cat foo.pm6
unit class Foo;
sub meow is export { say "meow" }
C:\Users\zoffix>perl6 -I. -e "use foo; meow"
meow
C:\Users\zoffix>perl6 -I. -e "use fOO; meow"
meow
C:\Users\zoffix>perl6 -I. -e "use FOO; meow"
meow
C:\Users\zoffix>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment