#!/usr/local/ymir/perl/bin/perl use strict; use warnings; use Tripletail qw(/dev/null); $TL->startCgi( -main => \&do_work, ); sub do_work { my $t = $TL->newTemplate('hello.html'); $t->expand(TITLE => 'Hello'); $t->flush; }