Help for this page

Select Code to Download


  1. or download this
    sub fred {
        my( $x, $y ) = @_;
        my $result = $x * $y;
        return $result;
    }
    
  2. or download this
    sub genList {
        my( $start, $end, $step ) = @_;
    ...
    
        ## use list
    }