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 PRINT TAB(30);"SINE WAVE"
- 20 PRINT TAB(15);"CREATIVE COMPUTING MORRISTOWN, NEW JERSEY"
- 30 PRINT: PRINT: PRINT: PRINT: PRINT
- 40 REM ARKABLE PROGRAM BY DAVID AHL
- 50 B=0
- 100 REM START LONG LOOP
- 110 FOR T=0 TO 40 STEP .25
- 120 A=INT(26+25*SIN(T))
- 130 PRINT TAB(A);
- 140 IF B=1 THEN 180
- 150 PRINT "CREATIVE"
- 160 B=1
- 170 GOTO 200
- 180 PRINT "COMPUTING"
- 190 B=0
- 200 NEXT T
- 999 END
|