Arrays: Difference between revisions

(Brainf*** implementation)
Line 372:
=={{header|AntLang}}==
<lang AntLang>/ Create an immutable sequence (array)
arr: seq[<1;2;3]>
 
/ Get the head an tail part
Line 383:
 
/ Get the nth element (index origin = 0)
nnth: arr[n elem arr]</lang>
 
=={{header|APL}}==
Anonymous user