Help for this page

Select Code to Download


  1. or download this
    my %defaults = ( cat => 1,
             dog => 2 );
    ...
        my $self = \%hash;
        return bless ($self, $class);
    }
    
  2. or download this
    sub mysub
    {
        my $cat = shift || 1;
        # etc
    }