Created
November 20, 2017 12:48
-
-
Save zacck-zz/3a343a761a1dd4eba7dd9e05fb54ea55 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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