Help for this page

Select Code to Download


  1. or download this
    sub _ss {
      my ($self, %arg) = @_;
    
      print Dumper(\%arg);
    }
    
  2. or download this
    sub _ss {
      my ($self, $hashref) = @_;
    ...
      # do stuff with $hashref
    
    }
    
  3. or download this
    sub _ss {
      my ($self, $hashref) = @_;
    ...
      # do stuff with %hash
    
    }