Help for this page

Select Code to Download


  1. or download this
    while (<FILEHANDLE>) {
        print;
        }
    
  2. or download this
    while (defined($_ = <FILEHANDLE>)) {
        print $_;
        }
    
  3. or download this
    for (<FILEHANDLE>) {
        print;
        }
    
  4. or download this
    for $_ (<FILEHANDLE>) {
        print $_;
        }