Skip to content

Instantly share code, notes, and snippets.

@vrurg
Created June 22, 2019 02:35
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 vrurg/6f7d4940a62648e76b28a429c39d1113 to your computer and use it in GitHub Desktop.
Save vrurg/6f7d4940a62648e76b28a429c39d1113 to your computer and use it in GitHub Desktop.
use v6.d;
unit module Baz;
sub test is export {
"The Ultimate Question"
}
our &test-test is export := &test;
use v6.d;
use Baz;
say test-test;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment