or download this
my $template = Template->new();
my $vars = {co_name=>"Foo-Co"};
...
$template->process(\$my_template_string, $vars, \$string); # stores o
+utput in $string
print $string;
$template->process(\$my_template_string, $vars ); # dumps output to S
+TDOUT