Help for this page

Select Code to Download


  1. or download this
       sub simple {
          my( $this, $that, $other )= @_;
    
  2. or download this
        sub complex {
          my $this= shift(@_);
          my $that= shift(@_);
          my $other= shift(@_);
    
  3. or download this
        sub pretty {
          my $first=    shift(@_);
          my $second=   shift(@_);
          my $optional= shift(@_);