The reason that this was done this way was for the common
case of someone forgetting to chop an incoming line and
then splitting on whitespace.

    while (<>) {
        @F = split;
        ...
    } 

Reply via email to