usize indexing only

This commit is contained in:
2026-08-11 20:12:12 +02:00
parent fa53ca2219
commit c2343b54bb
8 changed files with 216 additions and 53 deletions
@@ -0,0 +1,6 @@
main func() i32 {
items [3]mut i32 := undefined
i u32 := 1
items[i] = 42
return 0
}