This commit is contained in:
2025-06-03 12:52:07 +02:00
parent 98f01350f8
commit 178ad8b9c0
7 changed files with 87 additions and 22 deletions

10
examples/arrays.zr Normal file
View File

@@ -0,0 +1,10 @@
func main[] : I64
let xs: Array = Array.new()
Array.push(xs, 5242)
Array.push(xs, 6533)
Array.push(xs, 4574)
for i in 0:Array.size(xs)
xs
|> Array.nth(i)
|> print_i64()