Add new element to list

Just follow the Elixir docs to add an element to a list ( and keep performance in mind =) ): iex> list = [1, 2, 3] iex> [0 | list] # fast [0, 1, 2, 3] iex> list ++ [4] # slow [1, 2, 3, 4] https://hexdocs.pm/elixir/List.html