RosettaCodeData/Task/Enumerations/Elixir/enumerations-3.elixir

8 lines
214 B
Text
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
# Keyword list
2015-11-18 06:14:39 +00:00
fruits = ~w(apple banana cherry)a |> Enum.with_index
#=> [apple: 0, banana: 1, cherry: 2]
2016-12-05 22:15:40 +01:00
# Map
fruits = ~w(apple banana cherry)a |> Enum.with_index |> Map.new
#=> %{apple: 0, banana: 1, cherry: 2}