Help for this page

Select Code to Download


  1. or download this
    while (@arr2 = <CF>){
    
    foreach $line (@arr2) {
    
  2. or download this
    my @arr2 = <CF>;
    foreach $line (@arr2) {
    # ...
    
  3. or download this
    while (my $line = <CF>) {
    # ...