List
Represents a list of items.
var list = [1, 2, 3];
print(list[0]); // 1
append(object: Object) -> Null
Appends object
to the list.
toString() -> String
Returns the list in string form.
contains(object: Object) -> Boolean
Returns whether object
is in the list.