For a long time I've been wondering whether this is a bug or a feature: ``` elixir iex(1)> a = 1 1 iex(2)> quote do ...(2)> b = a ...(2)> quote do: unquote(b) ...(2)> end ** (UndefinedFunctionError) undefined function: IEx.Helpers.b/0 ```