Just started with Elixir's book by Dave Thomas.
It talks about two concepts:
Keyword Lists
[ name: "Dave", city: "Dallas", likes: "Programming" ]
Cards
states = %{ "AL" => "Alabama", "WI" => "Wisconsin" }
When do you pick one over the other?
source share