Re: syntax checking module

2001-07-11 Thread Brett W. McCoy
On Wed, 11 Jul 2001, Rizwan wrote: > I am looking for a module that checks the syntax of a perl script. the -c command-line option to Perl will check your syntax: perl -c

Re: syntax checking module

2001-07-11 Thread Michael Fowler
On Wed, Jul 11, 2001 at 12:21:10PM +0500, Rizwan wrote: > I am looking for a module that checks the syntax of a perl script. You don't need a module. Assuming your script is named "test.pl": > perl -wc test.pl if it complains, you have a compilation error, which includes syntax errors. I

Re: syntax checking module

2001-07-11 Thread Paul Johnson
On Wed, Jul 11, 2001 at 12:21:10PM +0500, Rizwan wrote: > I am looking for a module that checks the syntax of a perl script. perl -c script -- Paul Johnson - [EMAIL PROTECTED] http://www.pjcj.net

Re: syntax checking module

2001-07-11 Thread Maxim Berlin
Hello Rizwan, Wednesday, July 11, 2001, Rizwan <[EMAIL PROTECTED]> wrote: R> I am looking for a module that checks the syntax of a perl script. hm. why don't you use perl itself? or, may be, eval()? Best wishes, Maximmailto:[EMAIL PROTECTED]

syntax checking module

2001-07-11 Thread Rizwan
HI! I am looking for a module that checks the syntax of a perl script. Thank you. Rizwan