Array initializers are now implemented

Bobbi Webber-Manners 2018-05-04 23:59:14 -04:00
parent be0b9b27de
commit 8fe21d1125

@ -11,10 +11,6 @@ This is where I keep track of what to do next ...
## Medium-Term
- Wishlist features:
- Array initializer lists:
- `word xyz[3] = {123, 456, 789}`
- String initializer:
- `byte qq[10] = "abcde"` - will also add null terminator to string
- A way to pass string literals as subroutine arguments
- Multidimensional arrays
- 2D array is implemented as array of pointers to arrays of `word` or `byte`.