・Place a NEXT command at the end of the process.
・If the condition is not met, it may not be executed even once.
Variable that is automatically updated on every loop
・Increment is added for each loop.
The value of the loop variable at the start of the loop
The value of the loop variable that terminates the loop
・When the value of the loop variable exceeds this value, the loop is terminated.
・An increment to add to the loop variable at the end of the loop.
・If not specified, 1 is used as the increment value.
・If a negative number is specified, the value can be looped in a decreasing direction.
・If the increment is a decimal, it may not be the intended number of times due to calculation error.
FOR I=0 TO 9 STEP 2 PRINT I;","; NEXT