Index
Lists

ReverseList

ReverseList(<-list) ->reversedList

Description

Takes a list from the stack, makes a deep copy, reverses its contents, then pushes the new list back to the stack.

Examples

ReverseList(List("A" "B" "C")) ->list

Index