- or download this
our @ISA = qw/Exporter/;
our @EXPORTER = qw/new/;
- or download this
bless $self, $class;
- or download this
use Carp qw/confess/;
...
confess "Error loading data!";
}
}
- or download this
my $obj = coolobject->new or die "$!";
- or download this
my $obj = eval { coolobject->new }; # $obj might be undef