var/list/LISTNAME=list()
LISTNAME+=insert
LISTNAME-=insert
However what If you want to add more? I can't precisely remember how to do it..
var/list/LISTNAME=List("1"="1","2"="2")
How would I be able to add
"3"="3" ?
3 things;
1) This is all hypothetical variables, this isn't actual reference to code. A list to determine a number is just daft.
2) Is it possible to allow more than one thing defined to each? Such as..
Var/list/LISTNAME=List("1"="1"&"1.5","2"="2"&"2.5")
3) I apologies that this probably seems easy and I'm overlooking this however my mind does not seem to be working today.
To add associative values, such as "1"="1":
To contain multiple items in one slot, you can use multi-dimensional lists like this: