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.
 
 
 
 
 
 

14 lines
476 B

  1. 10 FOR N = 1 TO 7
  2. 20 PRINT N, SQR (N)
  3. 30 NEXT N
  4. 40 PRINT "DONE"
  5. 50 END
  6. 9900 REM ------------------------------------------------------------------------
  7. 9910 REM Purpose: SAMPLE example
  8. 9920 REM Author: General Electric
  9. 9930 REM Date: 1965-12-17
  10. 9940 REM Note: OPTION VERSION MARK-I
  11. 9950 REM Origin: 202026A_BASIC_Language_Reference_Manual_Jan1967.pdf
  12. 9960 REM Page: 14
  13. 9970 REM ------------------------------------------------------------------------