Skip to content

Instantly share code, notes, and snippets.

@mfollett
Created September 27, 2010 01:57
Show Gist options
  • Save mfollett/598497 to your computer and use it in GitHub Desktop.
Save mfollett/598497 to your computer and use it in GitHub Desktop.
class Tail
{
method wag()
{
say "swish, swish, swish";
}
}
class Dog is Animal
{
has Str $.tag is rw;
has Tail $!tail handles 'wag' = Tail.new();
method bark()
{
say "woof, woof!";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment