Feat: Add test for array literals and access

This commit is contained in:
2025-09-26 08:30:18 -07:00
parent 21d77c13dc
commit d1b3e6aaf7

6
test/src/arrays.hi Normal file
View File

@@ -0,0 +1,6 @@
items: [10, "hello", !0]
_(items[0])
_(items[1])
items[0] = 20
_(items[0])