Help for this page

Select Code to Download


  1. or download this
    my %code_cache;
    while (<>) {
    ...
       }
       $code->();
    }
    
  2. or download this
    use Memoize;
    
    ...
      parse_to_actions($_)->($_); # pass the line to the generated sub 
                                  # just in case it gets smart
    }