RosettaCodeData/Task/Arrays/Hexiscript/arrays.hexi

6 lines
124 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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]