Skip to content

Instantly share code, notes, and snippets.

@mfollett
Created September 27, 2010 01:59
Show Gist options
  • Save mfollett/598500 to your computer and use it in GitHub Desktop.
Save mfollett/598500 to your computer and use it in GitHub Desktop.
class ClumsyTail is Tail
{
method wag()
{
say "knocked over a vase.";
}
}
my $jewel = Dog.new( name => 'Jewel', tail => ClumsyTail.new() );
$jewel.wag();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment