Help for this page

Select Code to Download


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