Help for this page

Select Code to Download


  1. or download this
    use feature qw(state); # Perl 5.10+
    use Type::Params qw(compile);
    ...
      
      return $sum;
    }
    
  2. or download this
    use feature qw(state); # Perl 5.10+
    use Type::Params qw(compile);
    ...
      
      Num->assert_return( $sum );
    }
    
  3. or download this
    use feature qw(state); # Perl 5.10+
    use Type::Params qw(compile);
    ...
      #
      ArrayRef->of(ArrayRef)->assert_valid( \@z );
    }