The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!perl -w
use strict;
use Text::Clevy;
use FindBin qw($Bin);

my $path = $Bin;
my $tx = Text::Clevy->new(
    path      => [$path],
    cache_dir =>  $path,
);

print $tx->render('hello.tpl', { lang => 'smarty' });