Help for this page

Select Code to Download


  1. or download this
    sub sum {
        reduce { $a + $b } 0, @_; 
    ...
    sub std_dev {   
        sqrt variance (@_);
    }
    
  2. or download this
    sub reduce (&@) {
        my $code_ref = shift;
    ...
        }
        return $result;
    }