Help for this page

Select Code to Download


  1. or download this
    local our @deep;
    ...
    *deep = $entry;
    
  2. or download this
    our @deep;
    local *deep;
    ...
    *deep = $entry;
    
  3. or download this
    our @deep;
    ...
    local *deep = $entry;