in reply to Re^3: Spiffy: How to define the constructor to take parameters
in thread Spiffy: How to define the constructor to take parameters
For the record, here's what I changed about the constructor:
Thank yousub new() { my $raw = pop @_; my $self = super; $self->raw($raw); return $self; }
|
|---|