iex> [first | [second | [third | [ fourth | _rest ]]]] = [1, 2, 3, 4, 5, 6, 7] [1, 2, 3, 4, 5, 6, 7] iex> first 1 iex> {second, third, fourth} {2, 3, 4}