At 2002-05-06 23:32:49, [EMAIL PROTECTED] wrote:
>
> I am pretty sure that this:
> 
> > perl -e 'for (1,2,3,4,5,6,7,8,9,10) { $_++; }'
> 
> Is the same as:
> 
> perl -e 'for (10) { $_++; }'

Then this:

    perl -le 'for (1,2,3,4,5,6,7,8,9,10) { print }'

Should be the same as:

    perl -le 'for (10) { print }'

- ams

Reply via email to