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.
 
 
 
 
 
 

18 lines
376 B

  1. 10 PRINT TAB(30);"SINE WAVE"
  2. 20 PRINT TAB(15);"CREATIVE COMPUTING MORRISTOWN, NEW JERSEY"
  3. 30 PRINT: PRINT: PRINT: PRINT: PRINT
  4. 40 REM ARKABLE PROGRAM BY DAVID AHL
  5. 50 B=0
  6. 100 REM START LONG LOOP
  7. 110 FOR T=0 TO 40 STEP .25
  8. 120 A=INT(26+25*SIN(T))
  9. 130 PRINT TAB(A);
  10. 140 IF B=1 THEN 180
  11. 150 PRINT "CREATIVE"
  12. 160 B=1
  13. 170 GOTO 200
  14. 180 PRINT "COMPUTING"
  15. 190 B=0
  16. 200 NEXT T
  17. 999 END