|
| KiXtart 2001 Manual |
For ... Next
| Action: | Repeats a group of statements a specified number of times. |
||||||
| Syntax: | FOR $counter
= start TO end [STEP step] statements… NEXT |
||||||
| Parameters: |
Counter
Start
End
Step
|
||||||
| Remarks: |
FOR NEXT loops can be nested as many times as memory allows. Changing the value of counter while inside a loop can make it more difficult to read and debug your code. |
||||||
| See Also: |
Do Until,
For Each, While Loop |
||||||
| Example: |
For $Count = 0 To 10 Step 2 ? $Count Next |