Help for this page

Select Code to Download


  1. or download this
    sub parse_header {
       my ($header) = @_;
       do this and thia
    }
    
  2. or download this
    sub parse_header {
       my $header = shift;
       do this and thia
    }
    
  3. or download this
    sub three_args_func {
       my ($arg0, $arg1, $arg2) = @_;
       do this and thia
    }
    
  4. or download this
    sub three_args_func {
       my $arg0 = shift;
    ...
       my $arg2 = shift;
       do this and thia
    }