From d1b3e6aaf7f71fa698f610461baf2dd587364947 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Fri, 26 Sep 2025 08:30:18 -0700 Subject: [PATCH] Feat: Add test for array literals and access --- test/src/arrays.hi | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 test/src/arrays.hi diff --git a/test/src/arrays.hi b/test/src/arrays.hi new file mode 100644 index 0000000..cb23dba --- /dev/null +++ b/test/src/arrays.hi @@ -0,0 +1,6 @@ +items: [10, "hello", !0] +_(items[0]) +_(items[1]) + +items[0] = 20 +_(items[0])