Assigning Values to an Array: Difference between revisions

Content added Content deleted
(added APL)
Line 283: Line 283:
[[Category:mArray Snippet]]
[[Category:mArray Snippet]]
alias write2array { echo -a $array_write(MyArray, 2, 3, Rosetta) }
alias write2array { echo -a $array_write(MyArray, 2, 3, Rosetta) }

=={{header|Nial}}==
a := 1 2 3 4
a@1 := 100
a
=1 100 3 4


=={{header|Objective-C}}==
=={{header|Objective-C}}==