This is an old revision of the document!
⇐ Index
ListN(<-N) ->list
Creates a list and populates it with N items from the stack. The top item on the stack (after N) will be the last item in the list.
#Will create a list that contains "C" and "D". "A" will remain on the stack. ListN("A" "B" "C" 2) ->list trace(GetListCount(<-list)
⇐ Index