BASIC DEF INTLIST Statement - fvdhoef/aquarius-plus GitHub Wiki
DEF INTLIST
TYPE: plusBASIC system statement
FORMAT: DEF INTLIST var$ = integer_list
Action: Creates a binary string of two byte integers in LSB, MSB order,.
- var$ is a simple string variable.
- integer_list is a comma-separated list of integers in the range -65535 through 65535.
- The length of the string will be the number of integers times 2.
Example:
DEF INTLIST A$ = -1, 1, 32768
Creates a binary string consisting of the integers -1, 1, 32768.