Expose Internal Representation
Elixir is a language that has strong support for metaprogramming. It provides easy access to an internal representation of the code in the form of an Abstract Syntax Tree (AST) using maps and keyword lists. The quote
macro is used to expose this internal representation.
Last updated