use Template::TT3 'Template'; # create a template my $template = Template( text => 'Hello [% world %]' ); # generate an HTML view of the tokens. print $template->tokens->html;
use Template::TT3 'Template'; # create a template my $template = Template( text => 'Hello [% world %]' ); # generate an HTML view of the tokens. print $template->tokens->html;