Skip to content

Instantly share code, notes, and snippets.

@zoffixznet
Created January 6, 2017 17:19
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/b6cb79cd6729226a455f35ad08deb68d to your computer and use it in GitHub Desktop.
Save zoffixznet/b6cb79cd6729226a455f35ad08deb68d to your computer and use it in GitHub Desktop.
$ tree
.
├── v1
│   ├── Foo.pm6
│   └── META6.json
└── v2
├── Foo.pm6
└── META6.json
2 directories, 4 files
$ perl6 -Iv1 -Iv2 -e '{ use Foo:ver<1>; Foo::foo }; { use Foo:ver<2>; Foo::foo }'
one
one
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment