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.
 
 
 
 
 
 

11 lines
261 B

  1. 100 rem Purpose: Verify MAT READ
  2. 110 rem Author: Howard Wulf, AF5NE
  3. 120 rem Date: 2015-05-20
  4. 130 rem
  5. 140 option base 0
  6. 150 data "0,0","0,1","1,0","1,1","2,0","2,1","3,0","3,1","4,0","4,1","5,0","5,1"
  7. 170 dim B$(5,1)
  8. 180 mat read B$
  9. 190 mat print B$
  10. 999 end