Help for this page

Select Code to Download


  1. or download this
    my @list = (1, 2, 3);
    my $sum = [+] @list;
    say $sum;
    
  2. or download this
    my @list = (1, 2|3, 4);
    my $sum = [+] @list;
    say $sum;
    
  3. or download this
    my @list = (1, 2|3, 4);
    my $sum = @list.reduce(*+*);
    say $sum;