Help for this page

Select Code to Download


  1. or download this
    my $template = Text::Template->new(
       TYPE   => 'FILE',
       SOURCE => 'formletter.tmpl',
    ) or die $Text::Template::ERROR;
    
  2. or download this
    Dear {$name},
    
    ...
    immediately, or your patellae may be needlessly endangered. 
               Love,
               Mark "Vizopteryx" Dominus
    
  3. or download this
    Gates,Bill,Mr.,1,42000000000
    Wall,Larry,Mr.,5,2
    
  4. or download this
    my @monthname = qw(January yadda yadda December);
    
    ...
       die $Text::Template::ERROR unless $result;
       print $result;
    }