Skip to content

Instantly share code, notes, and snippets.

@edubkendo
Created January 27, 2015 03:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edubkendo/72a33b7a6d0a58e06c1c to your computer and use it in GitHub Desktop.
Save edubkendo/72a33b7a6d0a58e06c1c to your computer and use it in GitHub Desktop.
iex(3)> foo = [{:a, :b}]
[a: :b]
iex(4)> bar = {:b, :a}
{:b, :a}
iex(5)> [bar|foo]
[b: :a, a: :b]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment