Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 163 Bytes

1420-language-to.markdown

File metadata and controls

15 lines (9 loc) · 163 Bytes

TO

FOR t = var1 TO var2

Specifies the loop counter end in a FOR loop. For more information see FOR.

Example

for t = 1 to 10 print t next 
close