Help for this page

Select Code to Download


  1. or download this
    my $content = do {
        open my $fh, '<', $file or die "Couldn't open $file: $!\n";
        local $/ = undef;
        <$fh>;
    };
    
  2. or download this
    my $content;
    {
    ...
        local $/ = undef;
        $content = <$fh>;
    }
    
  3. or download this
    my $content = sub {
        my $file = shift;
    ...
        local $/ = undef;
        return <$fh>;
    }->($file);
    
  4. or download this
    ok 1;
    
    ...
    }
    
    ok 3;