Skip to content

Instantly share code, notes, and snippets.

@springcoil
Last active January 4, 2016 21:57
Show Gist options
  • Save springcoil/8a3643d0a2e389daf020 to your computer and use it in GitHub Desktop.
Save springcoil/8a3643d0a2e389daf020 to your computer and use it in GitHub Desktop.
Some fun with elixir
iex> Enum.map([1, 2, 3], fn x -> x * 3 end)
[3, 6, 9]
iex> Enum.map(%{1 => 2, 3 => 4}, fn {k, v} -> k * v end)
[2, 12]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment