http://www.perlmonks.org?node_id=1018003


in reply to Hello im new to programming i need help

Start by Writing subroutines, say one with Safety net...
  • Comment on Re: Hello im new to programming i need help

Replies are listed 'Best First'.
Re^2: Hello im new to programming i need help
by 7stud (Deacon) on Feb 10, 2013 at 01:17 UTC
    open FILETWO, "$initialfile2" or die "cannot open $initialfile2 for read\n";

    In addition:

    • You should use the 3-arg form of open().
    • You should not use bareword filehandles.
    • You should print out the system error that caused the die().

    Like this:

    open my $INFILE, '<', $fname or die "Couldn't open $fname: $!";