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


in reply to Re: Array Manipulation
in thread Array Manipulation

The detection of the real error location is not always precise (and it unfortunately cannot be). When you are looking at an obviously valid construct and Perl still insists on finding a fault there, look at the preceding statements - most likely it's a missing semicolon there that "extends" that statement further and leads to an error somewhere further down the code.

In your case, it's a missing semicolon in the statement right before your for statement:

my @files= <*.in>

Replies are listed 'Best First'.
Re^3: Array Manipulation
by Jalcock501 (Sexton) on Oct 08, 2013 at 09:06 UTC
    Hi Corion

    You know what... I literally spotted that just before reading this post, feel like an absolute muppet.

    Thanks for your help mate.

    Jim