in reply to Text::Template and the Binding of Package Variables

Drop the quotes around '__PACKAGE__' as it needs to be a bareword for the parser to process it e.g
print "package is: __PACKAGE__", $/; print "package is: ", __PACKAGE__, $/; __output__ package is: __PACKAGE__ package is: main
HTH

_________
broquaint