Skip to content

Instantly share code, notes, and snippets.

@damonjmurray
Created January 26, 2016 22:25
Show Gist options
  • Save damonjmurray/a7dace0ccfb1d0d516b6 to your computer and use it in GitHub Desktop.
Save damonjmurray/a7dace0ccfb1d0d516b6 to your computer and use it in GitHub Desktop.
Basic Elixir pattern matching for multiple assignment example
{evens, odds} = (1..10) |> Enum.partition(fn(x) -> Integer.is_even(x) end)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment