The DO loop iteration variable gets set too early. If the iteration variable is used in the limit expression or the step, the DO loop will execute the wrong number of times. declare x fixed; x = 20; do x = 0 to x; / This should loop 21 times / end;
Fixed in 0.5
Log in to post a comment.
Fixed in 0.5