The items coming after a data statement, whether numbers
or quoted strings, are always treated as strings.
So if you want to comment a data statement you must
preceed the comment by a colon like this
data 1,2,3,4 :'this is some data
If you are concerned about the size of your executable,
you should slam the colon right up against the last
datum -- because whatever is between the last datum and
the colon adds a corresponding number of bytes to the
executable. A tab adds one byte, a space adds one byte.
This is true even though the last datum will be read
as you would expect -- without the tabs or spaces.
You can try this out on a trivial example
read a$
print a$;"x"
data 1,2,3,4 :'xxxx
or quoted strings, are always treated as strings.
So if you want to comment a data statement you must
preceed the comment by a colon like this
data 1,2,3,4 :'this is some data
If you are concerned about the size of your executable,
you should slam the colon right up against the last
datum -- because whatever is between the last datum and
the colon adds a corresponding number of bytes to the
executable. A tab adds one byte, a space adds one byte.
This is true even though the last datum will be read
as you would expect -- without the tabs or spaces.
You can try this out on a trivial example
read a$
print a$;"x"
data 1,2,3,4 :'xxxx
Comment