so ByteArray35 is a specific arbitrarily pre-defined array ?
> I haven't yet figured out how to declare arrays in general such as INT(2) WORD(5) etc...
> Does one require a secret incantation ? ;-)
> Is it correct to assume that a STRING is a byte array with the first element containing the string length ?
> I believe BASIC strings are like this
> And when the STRING_TO_BUF is executed, is the result a null-terminated "unix" string ?
> or an open-ended byte-array which requires the length to be specified in an external variable ?
>
Oh… I meant to also inquire about the mechanism of multiple sequential file writes…
> On the other platform I am familiar with, the actual WRITE command must be always executed
> and an ENABLE boolean controls the actual operation...
> To write multiple files sequentially, one had to one had to monitor the status of the currently active
> write command, and when it had completed, then disable that write command and enable the next one
> and sequentiallly propagate the enables while checking the statuses
> Is there an equivalent paradigm here ?
> One must create one write "package"/program for each filename and then juggle the enables ?
>
>