Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
ARRAY of STRING (solved)
#2
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"
Reply


Messages In This Thread
ARRAY of STRING (solved) - by zarsoft - 03-18-2023, 05:06 PM
RE: ARRAY of STRING - by boriel - 03-18-2023, 06:01 PM
RE: ARRAY of STRING - by zarsoft - 03-18-2023, 11:32 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)