Help for this page

Select Code to Download


  1. or download this
    use 5.020;
    use warnings;
    ...
    
    my $tt = Template->new;
    $tt->process(\$template,{data => $data});
    
  2. or download this
    { A => [[qw(1 2 A 4)],[qw(3 4 A 5)]],
      B => [[qw(5 5 B 2)],[qw(6 2 B 3)]],
      C => [[qw(1 2 C 2)],[qw(2 3 C 2)],[qw(1 3 C 1)]],
    }
    
  3. or download this
    use 5.020;
    use warnings;
    ...
    
    my $tt = Template->new;
    $tt->process(\$template,{data => \%munged});