Help for this page

Select Code to Download


  1. or download this
    my $skip = (Dog) Animal->new;
    or
    my Dog $skip = Animal->new;
    
  2. or download this
    my Dog @showdogs;
    
  3. or download this
    foreach  my $dog(Dog @showdogs)
    {
       print $dog->bark(),"\n";
    }
    
  4. or download this
    method bark_at ($some_other_dog, $message)
    
  5. or download this
    sub method bark_at ($some_other_dog, $message)
    {
    ...
          die "Not valid class" unless is_obj_instance("Dog", $some_other_
    +dog);
       }
    }