Help for this page

Select Code to Download


  1. or download this
    my $variable = my_subroutine(\@my_array);
    sub my_subroutine
    ...
        
        return(\$variable);
    }
    
  2. or download this
    my $variable = my_subroutine(\$array_start_idx, \$array_end_idx);
    sub my_subroutine
    ...
        
        return(\$variable);
    }