Help for this page
while (<FILE>) { $line = <FILE>; ... } close(FILE);
my $line while ($line = <FILE>) { ... } close(FILE);