The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!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' });