Help for this page

Select Code to Download


  1. or download this
    my $idx = $#array;
    while ($idx--) {
        print "$array[$idx]\n";
    }
    
  2. or download this
    my $output = '';
    for my $elem (@array) {
    ...
    }
    $output .= "\n";
    print $output;