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::Xslate;
use Text::MicroTemplate qw(build_mt);

use Benchmark qw(:all);
use Config; printf "Perl/%vd %s\n", $^V, $Config{archname};
use Test::More;

foreach my $mod(qw(Text::Xslate Text::MicroTemplate)){
    print $mod, '/', $mod->VERSION, "\n";
}

my $n = shift(@ARGV) || 10;

my %vpath = (
    keys => <<'TX' x $n,
: for $h.keys() -> $k {
[<: $k :>]
: }
TX
);

my $tx = Text::Xslate->new(
    path      => \%vpath,
    cache_dir => '.xslate_cache',
    cache     => 2,
);

my $mt = build_mt(<<'T' x $n);
? for my $k(sort keys %{ $_[0]->{h} }) {
[<?= $k ?>]
? }
T

my $subst_tmpl = qq{Hello, %value% world!\n} x $n;

my $vars = {
    h => { %ENV },
};

{
    plan tests => 1;
    is $mt->($vars), $tx->render(keys => $vars), 'MT'
        or exit(1);
}

# suppose PSGI response body
cmpthese -1 => {
    xslate => sub {
        my $body = [$tx->render(keys => $vars)];
        return;
    },
    mt => sub {
        my $body = [$mt->($vars)];
        return;
    },
};