Help for this page

Select Code to Download


  1. or download this
    sub{$h{$1} = $2 if /(\d+)\n\n(\w+)/}->() foreach <DATA>;
    
  2. or download this
    /(\d+)\n+(\w+)/ and $h{$1} = $2 for <DATA>;