[% USE BaseHTML; # Template::Plugin::BaseHTML.pm GET BaseHTML.print_definitions( file => "some_file_a.txt", headings => [ "term", "definition" ], ); %] #### $ cat dumper.tt [% USE Dumper Indent = 1; GET Dumper.dump( file => "some_file_a.txt", headings => [ "term", "definition" ], ) %] $ tpage dumper.tt $VAR1 = { 'file' => 'some_file_a.txt', 'headings' => [ 'term', 'definition' ] }; #### $ cat class.tt [% USE q = Class('CGI'); GET q.start_form(); %] $ tpage class.tt