Re: strange error
- Posted by d a edmunds <dae at PACLINK.COM> Jun 28, 1997
- 731 views
At 03:26 AM 6/28/97 -0500, you wrote: > for iBufPos = 1 to length(iBuffer) > ....... > end for >iBufPos and FoundAt are atoms >Attempt to redifine iBufPos > FoundAt = find(iBuffer[iBufPos], Chars) > ^ The variable used to loop thru the 'for' statement cannot not be previously defined. For example: integer a for a = 1 to 10 do -- code end for generates the same error message as you are receiving --dae at paclink.com--