⇐ Index
Copy (<-var) ->copiedVar
Creates a copy of the item on the stack with the same contents. Note that if the data is a table or list and contains other tables or lists, they will shared not copied.
Split("1,2,3,4,5,6" ",") ->list <-list Copy ->list2 SetListElement(<-list2 0 "banana") Trace(<-list) Trace(<-list2)
⇐ Index