On Sun, Apr 20, 2008 at 3:57 PM, Levente Kovacs <[EMAIL PROTECTED]> wrote:
> Hi all,
>
>  Can anyone tell me what this error message mean?
>
>  syntax error at ./dbubdate.pl line 181, near "}continue"
>  Execution of ./dbubdate.pl aborted due to compilation errors.
snip

It means that you used improper syntax near line 181.  That is you
made a statement that does not follow the rules of the Perl language.
Perl is not certain which rule you broke, it just knows the parser
reached an invalid state at line 181.  Look at that line and the ones
preceding it to see if you are missing a parenthesis, bracket, brace,
semicolon, etc.

-- 
Chas. Owens
wonkden.net
The most important skill a programmer can have is the ability to read.

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to