- or download this
package Father;
...
return bless { news => undef }, $class;
}
1;
- or download this
package Daughter;
...
}
1;
- or download this
package Son;
...
}
1;
- or download this
use lib '.';
use Daughter;
...
print Dumper($son);
$daughter->other;
print Dumper($daughter);
- or download this
$ perl 11156317.pl
...
$VAR1 = bless( {
'news' => 'bad'
}, 'Daughter' );