⇐ Index ⇐ Lists
PrependToList(<-list <-item)
Adds a value to the beginning of a list. Any values previously stored in the list are shifted up by one.
Split("1,2,3,4,5,6" ",") ->list PrependToList( <-list 0) Trace(<-list)
See also: AppendToList
⇐ Index