Updated List Element.md (markdown)
commited
commit
9200b31f4246db347bf46f1bf65dd24dd101f0a2
... | ... | @@ -2,7 +2,12 @@ Gets a value stored in a list, with index starting from 0 (max 1,048,575). The o |
2 | 2 | |
3 | 3 | [[/uploads/Listelement.png]] |
4 | 4 | |
5 | Input: |
|
6 | - Variable |
|
7 | - Index: The Index of the element |
|
5 | 8 | |
9 | Output: |
|
10 | - Elements: A dual purpose wire serves as [[get variable]] to output a value and as [[set varible]] to output a variable for [[set reference]] |
|
6 | 11 | |
7 | 12 | ## Notes |
8 | 13 | The list basically is what you call in scripting language as "Array", but what really is this array. An array is single variable which can contain multiple values , in then which of each value defined as "varible[index]" , normally index in real scripting is automatically generated depending on it's order. |