Help for this page

Select Code to Download


  1. or download this
    sub screwed {
      my ($in) = @_;
    ...
      while(<IN>) { print "file $in contains $_"; }
      close(IN);
    }
    
  2. or download this
    while(defined(my $foo = <IN>)) { print "file $in contains $foo"; }