Help for this page

Select Code to Download


  1. or download this
    local $/=undef;
    my $DataToParse = <DATA>;
    ...
    exit();
    
  2. or download this
    my $DataToParse;
    {
        local $/;
        $DataToParse = <DATA>;
    }
    
  3. or download this
    my $DataToParse = do
       {
           local $/;
           <DATA>;
       };