SORTS THE CONTENT OF THE SYSTEM OBJECT NUMBER N
ACTION
The command SORT N sorts in ascending order all the items of the system object designated by its number N.
Remark: The command must be renewed every time the content of the system object must be sorted.
SYNTAX:
SORT N
USE ERROR EXAMPLE
rem create a LIST
list 1
rem add 3 lines
item_add 1,"BBB"
item_add 1,"CCC"
item_add 1,"AAA"
rem sort its content
sort 1
rem add one item
item_add 1,"ABC"
rem the order is : AAA,BBB,CCC,ABC
SORT
SORT N
SEE ALSO
SORT_ON
SORT_OFF