Created
July 3, 2013 23:11
-
-
Save jarsen/5923659 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
# example of incrementing all elements across a list | |
Enum.map [1,2,3], fn(x) -> x + 1 end | |
Enum.map [1,2,3], &1 + 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment