flatten — Flatten List
list flatten (
)
Gets a list of lists LIST and creates a single list that is the concatenation of those lists in LIST.
flatten ([ [1, 2], [3, 4] ]) -> [1, 2, 3, 4]