Nemerle Documentation

List.Append Method 

Returns list made from appending list y at end of list x. Original list are not modified. Works in time and memory O(length(x)).

public static list Append(
   list x,
   list y
);

See Also

List Class | Nemerle.Collections Namespace