Help for this page

Select Code to Download


  1. or download this
      while (<FH>) {
    
  2. or download this
      while (defined($_ = <FH>)) {
    
  3. or download this
      while (my $line = <FH>) {
    
  4. or download this
      while (defined(my $line = <FH>)) {