Skip to content

Instantly share code, notes, and snippets.

@ivan
Created September 30, 2016 16:24
Show Gist options
  • Save ivan/30852efce2b5dded85607411309265f3 to your computer and use it in GitHub Desktop.
Save ivan/30852efce2b5dded85607411309265f3 to your computer and use it in GitHub Desktop.
quoting.ex
iex(9)> quote do {1} end
{:{}, [], [1]}
iex(10)> quote do {1, 2} end
{1, 2}
iex(11)> quote do {1, 2, 3} end
{:{}, [], [1, 2, 3]}
@ivan
Copy link
Author

ivan commented Sep 30, 2016

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment