- or download this
sub new_from_http_request {
my ($class) = shift ;
...
$self->{myA} = undef ;
return bless $self, $class ;
}
- or download this
my $httpr = AnotherModule::f() ;
my $ownHttpr =
My::HTTPRequest->new_from_http_request($httpr);
- or download this
sub new{
my ($class) = shift ;
...
$self->{'myA'} = undef ;
return bless $self, $class ;
}