Skip to content

Instantly share code, notes, and snippets.

@montague
Created July 18, 2015 11:38
Show Gist options
  • Save montague/9ecd1bdde921b8425f8c to your computer and use it in GitHub Desktop.
Save montague/9ecd1bdde921b8425f8c to your computer and use it in GitHub Desktop.
iex(26)> [head | tail] = [1,2,3]
[1, 2, 3]
iex(27)> head
1
iex(28)> tail
[2, 3]
iex(29)> [tail | head]
[[2, 3] | 1]
iex(30)> [head | tail]
[1, 2, 3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment