Help for this page

Select Code to Download


  1. or download this
    foreach $row (@array) {
        foreach $column (ref $row ? @$row : $row) {
            print "This is the \$column: ".$column."\n";
        }
    }