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

This works...

#!/usr/bin/perl use strict; use warnings; print <<"TEXT"; This is a @{[ PrintHereDoc() ]} here-doc. TEXT print "END\n"; # subroutine sub PrintHereDoc { return "print statement inside a "; }

If you tell me, I'll forget.
If you show me, I'll remember.
if you involve me, I'll understand.
--- Author unknown to me
  • Comment on Re: Print statements inside a function call in a here-doc don't work
  • Download Code