Help for this page

Select Code to Download


  1. or download this
    my $raw = do {
       open(my $fh, '<', $file)
    ...
       local $/;
       <$fh>
    };
    
  2. or download this
    my $raw;
    {
    ...
       local $/;
       $raw = <$fh>;
    }