6 lines
124 B
Text
6 lines
124 B
Text
|
|
let a arr 2 # fixed size
|
||
|
|
let a[0] 123 # index starting at 0
|
||
|
|
let a[1] "test" # can hold different types
|
||
|
|
|
||
|
|
println a[1]
|