Implemented loop iterators
This commit is contained in:
10
tests/programs/index-dynamic.q
Normal file
10
tests/programs/index-dynamic.q
Normal file
@ -0,0 +1,10 @@
|
||||
import mem
|
||||
|
||||
main() {
|
||||
a := mem.alloc(4)
|
||||
|
||||
loop i := 0..4 {
|
||||
a[i] = i * 2
|
||||
assert a[i] == i * 2
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user