Help for this page

Select Code to Download


  1. or download this
    1 while s/<([^<]+?)>([^<]*?)<\/>/
       $_{$1}->{$2} ||= do {
    ...
          $func->($2)
       }
    /e;
    
  2. or download this
    my %cb = (
       use => \&use,
    ...
       #TODO: Make sure $cb->{$1} exists.
       $_{$1}->{$2} ||= $cb->{$1}->($2)
    /e;