I'm totally new to OPL and i've got a prog in basic which uses for loops and i was wondering if opl has for loops cause ive checked the docs and tutes i can only see while and do until loops.
thanks
For loop in opl
Indeed, OPL has no FOR...NEXT... loops. Fake it with this:
[code:1]
foo%=0
DO
foo%=foo%+1
rem *** Code in here
UNTIL foo%=10
[/code:1]
Thanx ewan