This is an old revision of the document!
~~DISCUSSION~~ <- CRPL reference <- Lists
| Arguments | Result | Notation | 
|---|---|---|
| List, Index, Value | None | L1 i1 n1 –  | 
Inserts the value n1 at element location i1 in list L1, pushing the previous i1 element and all subsequent elements up by one.
#Inserts the value of 5 at element #3 of list01 <-list01 2 5 SetListElement
Sample list list01 before:
0 - 100
1 - 105
2 - 110
3 - 115
Sample list list01 after sample command:
0 - 100
1 - 105
2 - 5
3 - 110
4 - 115