Help for this page

Select Code to Download


  1. or download this
    sub option {
      my $self=shift;
    ...
      my %h=@_;
      @{$self->{options}}{keys %h}=values %h;
    }
    
  2. or download this
       while(@_) {
          $self->{options}->{+shift}=shift;
       }