http://qs321.pair.com?node_id=152698


in reply to breaking a line on printing

Have you looked at the 'heredoc' notation?
#!/usr/bin/perl use strict; use warnings; print <<_END_; Once upon a time there was a little programmer that asked too many que +stions. Today his question wasn't realy a stupid one. And so on and on.. _END_
Not a perfect solution with regards to code indentation, but still very useful