The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!perl -w
# TODO
use strict;

use Text::Xslate;

my $tx = Text::Xslate->new(
    syntax => 'HTMLTemplate',
    cache  => 0,
);

print $tx->render('example/hello.tmpl', { lang => 'HTML::Template' });