Garden 🌻

List::append()

Return a new list with the value added to the end.

Example
[10].append(11) //-> [10, 11]
Source Code
public method append<T>(this: List<T>, value: T): List<T> {
  __BUILT_IN_IMPLEMENTATION
}