in reply to errors revisited
It seems that your Carp.pm is attempting to call two subroutines longmess and shortmess. There might be a probem with your installation of Carp.Undefined subroutine &Carp::longmess called at C:\PERL\lib/Carp.pm lin +e 296.
Update: The above was wrong
Update:
should beopen(PAGES, "<pages.txt") || die $!; @pages = PAGES; close(PAGES);
And then look at damian1301's response.open(PAGES, "<pages.txt") || die $!; @pages = <PAGES>; close(PAGES);
|
|---|