Help for this page

Select Code to Download


  1. or download this
    package BigThing;
    sub new {
          shift;
          bless $self, "BigThing";
    
  2. or download this
    package BigThing;
    sub new {
          my $class = shift;
          bless $self, $class;