Help for this page

Select Code to Download


  1. or download this
    Open(FH, "something.txt") or die ("could not open it $!\n");
    
  2. or download this
    use strict;
    use warnings;
    ...
    
    my $fh = IO::Handle->new;
    $fh->open('something.txt') or die("could not open file $!\n");