Help for this page

Select Code to Download


  1. or download this
    package Bob;
    sub new {bless({}, shift)->init}
    ...
        $self;
    }
    my $bob = Bob->new;
    
  2. or download this
    package MyUncle;
    sub new {bless({}, shift)->init}
    ...
        $self
    }
    my $bob_is_my_uncle = BobIsMyUncle->new;