Iteration schemes:
The bounds of a loop range can be literals, expressions or variables; but they must evaluate to integers. For instance, the given iteration schemes are legal:
j IN -5..5
k IN REVERSE first..last
step IN 0..TRUNC(high/low) * 2
code IN ASCII('A')..ASCII('J')