--- John Constable <[EMAIL PROTECTED]>
wrote:
<snip>
> $check = 0;
> $biggest = 0;
<snip> 

John, 

Welcome to the list.

One more comment, after all the other good replies:

It is good practice to have warnings enabled ( -w )
and to 'use strict;' at the start of your scripts:

   #!/perl/bin/perl -w
   use strict;

Then use 'my' for variables.

   my $check = 0;

This will help perl give you error messages that are
useful when debugging a script.

HTH,
Jim


__________________________________________________
Do You Yahoo!?
Yahoo! Tax Center - online filing with TurboTax
http://taxes.yahoo.com/
_______________________________________________
ActivePerl mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to