Help for this page

Select Code to Download


  1. or download this
    #Either
    local $_ = $$s;
    
    #Or
    s//$$s/; #tricky.. ;-)
    
  2. or download this
    sub lexer {
       my ($parser) = shift;
    ...
          return ($key, $1) if $$s =~ $regex;
       }
    }