View Single Post
  #8  
Old 11-11-2012, 04:20 PM
lerxst2112
Demi-God
 
Join Date: Aug 2010
Posts: 1,742
Default

And, as c0ncrete demonstrated above, Perl will happily tell you where the syntax errors are, you just need to use it.

Code:
C:\Temp>perl -c t.pl
syntax error at t.pl line 12, near "else"
syntax error at t.pl line 23, near "}"
t.pl had compilation errors.
Reply With Quote