Skip to content

Instantly share code, notes, and snippets.

@MarketingPip
Created September 12, 2022 22:40
Show Gist options
  • Save MarketingPip/b444f9f13248f1cfeaf47d795d48dcd8 to your computer and use it in GitHub Desktop.
Save MarketingPip/b444f9f13248f1cfeaf47d795d48dcd8 to your computer and use it in GitHub Desktop.
/* 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
print "Printed"; i ; " time"
NEXT
@MarketingPip
Copy link
Author

An example on how to write a basic loop in the programming language called BASIC released on May 1, 1964.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment