Help for this page

Select Code to Download


  1. or download this
    $ perl -Mstrict -Mwarnings -E '
    use List::Util qw/reduce/;
    ...
    Name "main::a" used only once: possible typo at -e line 3.
    Name "main::b" used only once: possible typo at -e line 3.
    720
    
  2. or download this
    $ perl -Mstrict -Mwarnings -E '
    use List::Util qw/reduce/; $a || $b || 1;
    say reduce { $a * $b } 1..6;
    '
    720
    
  3. or download this
    $ perl -Mstrict -Mwarnings -E '
    use List::Util qw/reduce sum/; $a || $b || 1;
    ...
    '
    720
    21