Just started with Elixir book by Dave Thomas.
It talks about two concepts:
Keyword lists
[ name: "Dave", city: "Dallas", likes: "Programming" ]
Maps
states = %{ "AL" => "Alabama", "WI" => "Wisconsin" }
When would you choose one over the other?