Skip to content

Instantly share code, notes, and snippets.

@zacck-zz
Created November 20, 2017 12:48
Show Gist options
  • Save zacck-zz/3a343a761a1dd4eba7dd9e05fb54ea55 to your computer and use it in GitHub Desktop.
Save zacck-zz/3a343a761a1dd4eba7dd9e05fb54ea55 to your computer and use it in GitHub Desktop.
defmodule Names do
def names() do
our_names = ["Zacck", "Carla", "Kristie", "David"]
our_new_names = our_names ++ "Jahir"
IO.puts inspect our_new_names
IO.puts inspect our_names
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment