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