Skip to content

Instantly share code, notes, and snippets.

@mfollett
Created September 27, 2010 01:55
Show Gist options
  • Save mfollett/598491 to your computer and use it in GitHub Desktop.
Save mfollett/598491 to your computer and use it in GitHub Desktop.
class Animal
{
has Str $.name;
method eat( $food )
{
say "$.name is eating some $food";
}
method sleep($self:)
{
say $self.name ~ ' is sleeping.';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment