Help for this page

Select Code to Download


  1. or download this
    package Dog;
    use fields qw/intelligence/
    ...
        my Dog $self = shift;
        $self->{intelligence};
    }
    
  2. or download this
    sub intelligence {
        my Dog $self = shift;
        $self->{inteligence}; # typo
    }
    
  3. or download this
    sub intelligence {
        my $self = shift;
        $self->{inteligence}; # typo
    }