Arrays: Difference between revisions

no edit summary
No edit summary
Line 698:
 
</lang>
 
=={{header|Arturo}}==
 
<lang arturo>arrA #()
 
 
arrB #("one" "two" "three")
 
 
arrB arrB + "four"
print arrB
 
 
add arrB "five"
print arrB
 
 
print arrB.[1]</lang>
 
{{out}}
 
<pre>
#("one" "two" "three" "four")
#("one" "two" "three" "four" "five")
two
</pre>
 
=={{header|AutoHotkey}}==
1,532

edits