L | : | { list, array} |
li | : | anything |
Returns: A list (array).
Synopsis: This function appends
to the list L.
If the resulting list has length less than 10, it returns a new
copy. Otherwise it appends it to L.
Examples:
> z := proc() > print('dummy procedure'); > end; > append([1, 2, 3, 4], 5, [6, 7], [99], z);