Help for this page

Select Code to Download


  1. or download this
    my $var;
    my $template = Template->new;
    $template->process( \'In-place [% foo %] query', { foo => 42 }, \$var 
    +);
    
  2. or download this
    my $tt = Template->new;
    my $compiled = $tt->template( \'In-place [% foo %] query' );
    $template->process( $compiled, { foo => 42 }, \$var );