• C-like FOR ability
      FOR <exp> IF <condition> STEP <step>
        <statements>
      ENDFOR
    

    This means, that <exp> is processed at the beginning and then, when the <condition> is TRUE, <statements> will process and at the end the <step> will process. Then the <condition> is taken again...