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.
 
 
 
 
 
 

12 lines
203 B

  1. 10 REM 'DIM' STRING ARRAY TEST PROGRAM
  2. 20 DIM A$(10)
  3. 30 FOR X=1 TO 4
  4. 40 READ A$(X)
  5. 50 NEXT X
  6. 60 PRINT "THE 'DIM' STATEMENT PASSED THE";
  7. 70 FOR X=1 TO 4
  8. 80 PRINT A$(X);
  9. 90 NEXT X
  10. 100 DATA T,E,S,T
  11. 999 END