Help for this page

Select Code to Download


  1. or download this
    $encode = 'u'; # example, could be 'p', 'b', or 'u'
    $sub_ref = template($encode);
    
    ...
    ...time passes...
    
    $encoded_output = &$sub_ref;
    
  2. or download this
    sub template {
        my $e = shift;
        my $common = sub {...shared stuff...}
        if ($e eq 'b') { return sub {&$common; ...stuff...} }
        if ($e eq 'u') { return sub {&$common: ...other stuff...} }
    etc.