bobbimanners / EightBall

The Eight Bit Algorithmic Language for Apple II, Commodore 64 and VIC20
GNU General Public License v3.0
19 stars 3 forks source link

Implement support for array initializers #15

Closed bobbimanners closed 6 years ago

bobbimanners commented 6 years ago

It would be convenient to be able to do: word xx[3] = {123, 456, 789};

bobbimanners commented 6 years ago

Also string initializers for byte arrays: byte str[100]="This is a string"; ' Null terminated

bobbimanners commented 6 years ago

This is implemented in v0.63, which I will upload to GitHub in a few minutes (once I have finished sanity testing).

bobbimanners commented 6 years ago

v0.63 has been uploaded - implements list and string initializers as suggested above.