RosettaCodeData/Task/Arrays/Argile/arrays-2.argile

5 lines
68 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
use std, array
let x = @["foo" "bar" "123"]
print x[2]
x[2] = "abc"