Help for this page

Select Code to Download


  1. or download this
    sub foo {
     my ($query_ref, $session_ref) = @_;
    }
    
  2. or download this
    sub mysub {
    my a = shift; #1
    my $b = shift; #2
    ... and so on
    
  3. or download this
     sub mysub {
     my @p = @_; #the array 1,2,3....10
    ...
    
  4. or download this
     sub mysub {
    my ($a, $b, $c, ....$j) = @_; #$a = 1, $b = 2, ... $j = 10