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
214 B

  1. 100 rem MAT PRINT
  2. 110 rem Howard Wulf, AF5NE
  3. 120 rem 2015-05-19
  4. 130 rem
  5. 140 option base 0
  6. 150 dim A$(5)
  7. 160 for I=0 to 5
  8. 170 A$(I)=STR$(I*10)
  9. 180 next I
  10. 190 mat print A$
  11. 200 mat print A$,
  12. 210 mat print A$;
  13. 999 end