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