Arrays: Difference between revisions

Content added Content deleted
No edit summary
Line 698: Line 698:


</lang>
</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}}==
=={{header|AutoHotkey}}==