From 8fe21d112524a88e70ca3e05276c0294fd456a04 Mon Sep 17 00:00:00 2001 From: Bobbi Webber-Manners Date: Fri, 4 May 2018 23:59:14 -0400 Subject: [PATCH] Array initializers are now implemented --- Roadmap.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Roadmap.md b/Roadmap.md index 9eebbaf..bc33c3d 100644 --- a/Roadmap.md +++ b/Roadmap.md @@ -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`.