Index
Lists

List

List ->list

Description

Creates a list and populates it with the contents of the stack. The entire contents of the stack will be added to a newly created list. The top item on the stack will be the last item in the list.

Examples

List(1 2 3) ->list
trace(GetListCount(<-list)

Index