Doc: Add example for array indexing

Supersedes and closes #20180.
This commit is contained in:
Rémi Verschelde 2018-07-17 11:47:27 +02:00
parent 4565fd1216
commit adb16be6b9
1 changed files with 10 additions and 1 deletions

View File

@ -4,7 +4,16 @@
Generic array datatype.
</brief_description>
<description>
Generic array, contains several elements of any type, accessible by numerical index starting at 0. Negative indices can be used to count from the right, like in Python. Arrays are always passed by reference.
Generic array, contains several elements of any type, accessible by a numerical index starting at 0. Negative indices can be used to count from the back, like in Python (-1 is the last element, -2 the second to last, etc.). Example:
[codeblock]
var array = ["One", 2, 3, "Four"]
print(array[0]) # One
print(array[2]) # 3
print(array[-1]) # Four
array[2] = "Three"
print(array[-2]) # Three
[/codeblock]
Arrays are always passed by reference.
</description>
<tutorials>
</tutorials>