Help for this page

Select Code to Download


  1. or download this
    sub foo {
      my %args = (1 == @_) ? (named_arg => shift) : @_;
      # etc
    }
    
  2. or download this
    sub foo {
      my $args = shift;
    ...
      }
      # etc
    }