Help for this page

Select Code to Download


  1. or download this
    my $data = undef;
    my $object_or_undef = bless( $data, 'My::Class' );
    
  2. or download this
    package My::Class {
      sub new {
    ...
    
    my $data = undef;
    my $object_or_undef = My::Class->new( $data );