Hello mark,

Tuesday, June 26, 2001, mark crowe (JIC) <[EMAIL PROTECTED]> wrote:

mcJ> If I might make one other little comment - I suggest you initialise $counter
mcJ> by $counter=0, rather than $counter="0"; The former makes it a number, the
mcJ> latter a string.
(jfyi only)
you are mistaken. all variables in perl saves as strings; then,
perl converts string - depends of your needs.

try:

$a="0";
$a++;
print $a;

Best wishes,
 Maxim                            mailto:[EMAIL PROTECTED]


Reply via email to