Help for this page

Select Code to Download


  1. or download this
    package CoolObject;
    sub new {
    ...
      my $self = { name => 'new' }, $class;
      $self->loaddata() or die 'Error loading data';
      return $self;
    
  2. or download this
    my $co = CoolObject->new();
    # or if you want to trap the error...
    ...
    if ($@) {
      # do something about the error
    }