This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Basic Loop in BASIC progamming language | |
* For more BASIC / BAS resources - | |
* [BASIC Programming/Beginning BASIC/Control Structures/FOR...NEXT - Wikibooks, open books for an open world] | |
* https://en.wikibooks.org/wiki/BASIC_Programming/Beginning_BASIC/Control_Structures/FOR...NEXT | |
* [WHAT IS BASIC?] | |
* https://en.wikipedia.org/wiki/BASIC | |
*/ | |
Dim i as Integer = 10 | |
FOR i = 1 TO 10 |
NewerOlder