TinTin++ Mud Client Manual  
List
space
Syntax: #list {variable} {del|ins|get|set|len} {argument}
space
#list {list} {del} {index}            Delete an item from the list
#list {list} {ins} {index} {string}   Insert {string} at given index
#list {list} {get} {index} {variable} Copy an item to {variable}
#list {list} {set} {index} {string}   Change an item at the given index
#list {list} {len} {variable}         Copy list length to {variable}
	
space
The index should be between 1 and the list's length. You can also give a negative value, in which case -1 equals the last item in the list, -2 the second last, etc.
space
When inserting an item a positive index will append the item at the given index, while a negative index will prepend the item.
space
A length of 0 is returned for an empty or non existant list.
space