implement support for setting indexed values

This commit is contained in:
Alex Zenla
2025-07-26 17:01:24 -07:00
parent 48e19a8068
commit 3dcac2f9e6
26 changed files with 201 additions and 44 deletions

View File

@ -1,4 +1,6 @@
export func main() {
let items = [["Hello"], ["Goodbye"]]
println(items[0][0])
items[0][0] = "Goodbye"
println(items[0][0])
}