in reply to default variable for while()
useful newbie tip: it's often useful to do something like: while(my $line = <FILE>){}, less of a chance of confusing yourself (I just noticed that a lot of "casual" scripters don't even realize you can do this, and treat while(<>) as some sort of a keyword)