This is an old revision of the document!
<- PRPL reference <- Lists
Arguments | Result | Notation |
---|---|---|
list | list | [list- list] |
Creates a copy of a list with the same contents. Someone more computer-eloquent explain pass by reference vs. value here. Note that if the list contains other lists, they will not be copied - for that you need DeepCopyList.
Split("1,2,3,4,5,6" ",") ->list <-list CopyList ->list2 SetListElement(<-list2 0 "banana") Trace(<-list) Trace(<-lis2)