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


in reply to Re: Error using HTML::Template
in thread Error using HTML::Template

But there is a typo in the POD - that comma before $template->output; should be a period (string concatenation).

Why?

#!/usr/bin/perl -l print 1,2,3; $,=$"; print "this","works"; __END__ 123 this works

This is the print LIST form that is mentioned in perldoc -f print.