in reply to Re: For loop problem
in thread For loop problem
When I use this is evaluates the left side first, and cycles through 1 to 11.for(++$....$..$.)
But as soon as I add that second ++, it evaluates the right side first, and cyles through 2 to 12.for(++$....$.++.$.)
And this is perhaps the strangest of them all. It evaluates the right side of the ...(flip flop) operator first, and also evaluates the right side of the .(concatanation) operator first. It cycles through 2 to 22.for(++$....$..++$.)
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Re: For loop problem
by japhy (Canon) on Jun 03, 2001 at 23:19 UTC | |
by Arguile (Hermit) on Jun 04, 2001 at 00:26 UTC | |
by chipmunk (Parson) on Jun 04, 2001 at 06:05 UTC | |
by Arguile (Hermit) on Jun 04, 2001 at 06:41 UTC |