26 Feb 2012 9:52
#9711
The following compile OK
INTEGER*1 BYTE(2)/1,2/, BYTE1/3/
or
INTEGER*1 BYTE1, BYTE(2)/1,2/
but this (and variations of it)
INTEGER*1 BYTE1/3/, BYTE(2)/1,2/
produces the compilation error 'Not enough variables in DATA statement'
?