in reply to How to write a program to read stdin or command line?

Wow. Such a seemingly simple question, so much discussion.

If you say you want to read from STDIN or command line, I guess you want it to behave like cat. I guess someone else needs to understand it too.

while (<>) { chomp; print "$_ world\n"; }