Skip to content

Instantly share code, notes, and snippets.

@jnthn
Created July 3, 2009 23:06
Show Gist options
  • Save jnthn/140363 to your computer and use it in GitHub Desktop.
Save jnthn/140363 to your computer and use it in GitHub Desktop.
glug
glug
A very important activity
role doc { has Str $.doc is rw; }
multi trait_mod:<is>(&code, doc, $message) {
&code does doc($message);
}
sub drink($pints) is doc("A very important activity") {
say "glug" for 1..$pints;
}
drink(2);
say &drink.doc;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment