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.
 
 
 
 
 
 

20 lines
412 B

  1. 100 REM Purpose: Verify CREATE command
  2. 110 REM Author: Howard Wulf, AF5NE
  3. 120 REM Date: 2015-12-23
  4. 130 REM
  5. 200 CREATE "CREATE_2.TXT" RECL 64 AS 777
  6. 210 FOR I = 10 TO 1 STEP -1
  7. 220 LET A$ = "THIS IS LINE " + STR$(I)
  8. 230 PRINT # 777, I; A$
  9. 240 NEXT I
  10. 250 CLOSE 777
  11. 300 OPEN "CREATE_2.TXT" RECL 64 AS 333
  12. 310 FOR I = 10 TO 1 STEP -1
  13. 320 READ # 333, I; B$
  14. 330 PRINT B$
  15. 340 NEXT I
  16. 350 CLOSE 333
  17. 999 END