list.create

Syntax

l := list.create(i<,a>)

Create a list of i elements.

If the optional value a is given, then each element in the list is initialize to a.

Returns:l - a list i elements long
Arguments:i - The length of the list to create a - The value to initialize each element in the list to.