Help for this page

Select Code to Download


  1. or download this
    sub average {
        if (@_) {
    ...
            return undef;
        }
    }
    
  2. or download this
    sub sum { my $sum; $sum += $_ for @_; $sum }
    sub avg { @_ ? sum(@_)/@_ : undef }