This is an old revision of the document!
~~DISCUSSION~~ <- CRPL reference <- Flow Control
Arguments | Result | Notation |
---|---|---|
– |
Immediately exits the body of a 'while/repeat/endwhile' block or a 'do/loop' block.
# Iterate from 0 to 9, but only trace numbers from 0 to 5. ShowTraceLog ClearTraceLog 10 0 do I Trace I 5 gte if break endif loop