| Posted: 11:34am 31 Jul 2021 |
Copy link to clipboard |
 Print this post |
|
Since some features are still in beta, would it be possible to bring CMM2 in line with other BASICs that have a MAT READ and vary the column faster than the row? I don't think that many programs have been written yet that this change would break while there have been thousands of programs that need rewriting as it is now.
In other BASICs:
DIM A(2,2) MAT READ A DATA 1,2,3,4 MAT PRINT A
1 2 3 4
In CMM2 BASIC
DIM A(2,2) READ A() DATA 1,2,3,4 MATH M_PRINT A()
1 3 2 4 Edited 2021-07-31 21:37 by toml_12953 |