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.
 
 
 
 
 
 

61 lines
4.7 KiB

  1. ----------------------------------------
  2. MAT READ varname( ubound [,...] ) ,1 dimension
  3. 1
  4. 1 2
  5. 1 2 3
  6. 1 2 3 4
  7. ----------------------------------------
  8. MAT READ varname( ubound [,...] ) ,2 dimensions
  9. 11
  10. 11 12
  11. 21 22
  12. 11 12 13
  13. 21 22 23
  14. 31 32 33
  15. 11 12 13 14
  16. 21 22 23 24
  17. 31 32 33 34
  18. 41 42 43 44
  19. ----------------------------------------
  20. MAT READ varname( ubound [,...] ),3 dimensions
  21. 111
  22. 111 112
  23. 121 122
  24. 211 212
  25. 221 222
  26. 111 112 113
  27. 121 122 123
  28. 131 132 133
  29. 211 212 213
  30. 221 222 223
  31. 231 232 233
  32. 311 312 313
  33. 321 322 323
  34. 331 332 333
  35. 1111 1112 1113 1114
  36. 1121 1122 1123 1124
  37. 1131 1132 1133 1134
  38. 1141 1142 1143 1144
  39. 1211 1212 1213 1214
  40. 1221 1222 1223 1224
  41. 1231 1232 1233 1234
  42. 1241 1242 1243 1244
  43. 1311 1312 1313 1314
  44. 1321 1322 1323 1324
  45. 1331 1332 1333 1334
  46. 1341 1342 1343 1344
  47. 1411 1412 1413 1414
  48. 1421 1422 1423 1424
  49. 1431 1432 1433 1434
  50. 1441 1442 1443 1444