http://www.perlmonks.org?node_id=1003515


in reply to Print statements inside a function call in a here-doc don't work

As you see, a 0 is printed at the place of the subroutine call. That is of course the return 0 from your subroutine.

But the print in your subroutine happens before the print of the heredoc and hence it shows up --as expected-- before the heredoc. You are not printing into the heredoc, but directly to your standard output device!

CountZero

A program should be light and agile, its subroutines connected like a string of pearls. The spirit and intent of the program should be retained throughout. There should be neither too little or too much, neither needless loops nor useless variables, neither lack of structure nor overwhelming rigidity." - The Tao of Programming, 4.1 - Geoffrey James

My blog: Imperial Deltronics