- or download this
package Base;
...
1;
...do the same for an AgeDecorator
- or download this
use Base;
use NameDecorator;
...
my $decorated = AgeDecorator->new(NameDecorator->new(Base->new('id1'))
+);
$decorated->name('Edith');
$decorated->age(93);
- or download this
package NameProto;
...
}
1;