Help for this page

Select Code to Download


  1. or download this
    bless($self,$class);
    
  2. or download this
    my $proto = shift;
    my $class = ref($proto) || $proto;
    # stuff to create self
    bless($self,$class);
    
  3. or download this
    sub new
      {
    ...
              attributes => {},
          }, $class;
      }