Created
September 30, 2016 16:24
-
-
Save ivan/30852efce2b5dded85607411309265f3 to your computer and use it in GitHub Desktop.
quoting.ex
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://www.youtube.com/watch?v=p8MGNw045AE&t=19m