Help for this page

Select Code to Download


  1. or download this
    # Bad
    sub bar {
        my $self = shift;
        my %options = @_;
    }
    
  2. or download this
    sub bar {
        my $self = shift;
    ...
                       opt2=>'bar', # desc for opt2
                       @_);
    }