- or download this
package myclass;
use Carp qw(croak);
...
return bless $class->SUPER::new(23), $class;
}
- or download this
package myclass;
use Class::Std;
...
my ($self, $ident, $args) = @_;
$args->{value} = 23;
}
- or download this
mysubclass->new;
- or download this
Missing initializer label for myclass: 'value'.
Fatal error in constructor call