Created
January 19, 2019 23:05
-
-
Save Tombarr/d8da8c261f5fdefa16e8e06cf317b789 to your computer and use it in GitHub Desktop.
Maps in Elixir
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
map = %{ | |
:red => "blue", | |
1 => 2, | |
true => false | |
} | |
map[true] # false | |
map[:red] # "blue" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment