Subject: | $_ is not localized |
This is perl, v5.8.6 built for i686-linux
Linux lux 2.6.4-52-default #1 Wed Apr 7 02:08:30 UTC 2004 i686 athlon i386 GNU/Linux
after creating a template, $_ is set to a new value:
$ perl -wle'
use HTML::Template::JIT;
my $t = HTML::Template::JIT->new(
filename => "examples/test.htc",
jit_path=>"/tmp/jit",
);
$t->param({foo => 23});
print $_;
$t->output;
print $_;
'
version : 5.8.6
version : 5.8.6