Help for this page

Select Code to Download


  1. or download this
    method bark_at (Dog $some_other_dog, $message)
    {
        # horrible Perl6y pseudo-code
        print "$.name says to $some_other_dog.name, '$message'\n";
    };
    
  2. or download this
    class DogShow
    {
        my Dog @showdogs;
    }