Help for this page
BEGIN { $/ = "\n"; $\ = "\n"; } LINE: while (defined($_ = <ARGV>)) { ... our(@F) = split(' ', $_, 0); print 'hello '; }