Help for this page

Select Code to Download


  1. or download this
    use List::Util qw(reduce); # unnecessary in in Perl 6 {grin}
    my @result = reduce { [$b->{@$a}] } [], @$agenda;
    
  2. or download this
    my @result;
    @result = $_->(@result) for @$agenda;