ListAppend()

Adds the given value to the end of the list, with the given delimiter

Usage

STRING = ListAppend( list, value, delimiter )
Argument Summary
list list
value value
delimiter delimiter - default comma (,) [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

ListAppend(
   list=?, 
   value=?, 
   delimiter=?
);

Supports passing parameters as a structure using ArgumentCollection:

ListAppend( ArgumentCollection={
   list : ?, 
   value : ?, 
   delimiter : ?
} );