#Where can I find Atom, String, or List syntax macro?

1 messages · Page 1 of 1 (latest)

round agate
#

I find %{}, {}, %, and <<>> in Kernel.SpecialForms.
But I couldn't locate "", '', [], or :.
When I do iex> i [], it says Reference modules List. But there is no [] in List.
Do they come from Erlang? Or do they live in a secret place?

umbral wren
#

AFAIK these cannot be defined like other parts of language simply because these aren't like functions, but terms on their own (or parts of other terms in case of :).

round agate
umbral wren
round agate
umbral wren
#

These are handled in parser

round agate
#

Oh okay

livid bronze
#

some things are constructors/special forms, others are literally syntax

round agate