FOR
Category: Statement
Syntax: FOR variable = start TO limit
FOR variable = start TO limit STEP step_num
Description
Starts a bounded counting loop block. The loop variable increments by 1 (or the value of STEP if defined). Loops continue until the variable value passes limit.