ChipMaster's bwBASIC
This also includes history going back to v2.10. *WARN* some binary files might have been corrupted by CRLF.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- 10 REM WHILWEND.BAS -- Test WHILE-WEND Loops
- 20 PRINT "START"
- 30 LET X = 0
- 40 WHILE X < 25
- 50 PRINT "x is ";X
- 60 LET X = X + 1
- 70 LET Y = 0
- 80 WHILE Y < 2
- 90 PRINT "y is "; Y
- 100 LET Y = Y + 1
- 110 WEND
- 120 WEND
- 130 PRINT "END"
|