Help for this page

Select Code to Download


  1. or download this
    my @array = map A, map B, LIST;
    
  2. or download this
    my @list1;
    for (LIST) {
    ...
        push @list2, A;
    }
    my @array = @list2;