03-18-2023, 06:01 PM
You can do that as in normal Sinclair BASIC. Use READ, DATA:
Code:
DIM Board$(3): REM You don't need to specify the max length of each row.
DIM i As UInteger
FOR i = 1 TO 3
READ Board(i)
NEXT i
DATA "ABCD", "EFGH", "IJKL"