RosettaCodeData/Task/Arrays/Frink/arrays.frink

7 lines
60 B
Plaintext

a = new array
a@0 = 10
a@1 = 20
println[a@1]
b = [1, 2, 3]