Declined do i=1 to 10 by 0

May 20, 2008
12,382
138
Syracuse, NY, USA
That leads to a never-ending do loop. I know it's a dumb thing to do, but this will do the same thing if DELTA is not defined:

Code:
do i=1 to 10 by %delta

and that's a little less dumb.

Perhaps there could be a check for the increment being 0.