Help for this page

Select Code to Download


  1. or download this
    {
       my %template_var;
    ...
       my ($key,$val) = split '=', $linefromtemplate;
       $template_var{$key} = $val;
    }
    
  2. or download this
    {
       package template_var;
    ...
      $$key = $val;# left out symbolic dereference
    use strict 'refs';
    }