Help for this page

Select Code to Download


  1. or download this
        my $found = 0;
        while ($found < 2) {
    ...
                print "$found- $customer2_data[1]";
            }
        }
    
  2. or download this
    my $found = 0;
    while ( $found < 2 and my $line = <DATA> ) {
    ...
        # ...
      }
    }