mirror of
https://github.com/jbranchaud/til
synced 2026-01-05 08:08:02 +00:00
Make correction: function -> macro
This commit is contained in:
@@ -3,7 +3,7 @@
|
|||||||
Elixir is a language that has strong support for metaprogramming. It
|
Elixir is a language that has strong support for metaprogramming. It
|
||||||
provides easy access to an internal representation of the code in the form
|
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`
|
of an Abstract Syntax Tree (AST) using maps and keyword lists. The `quote`
|
||||||
function is used to expose this internal representation.
|
macro is used to expose this internal representation.
|
||||||
|
|
||||||
```elixir
|
```elixir
|
||||||
> quote do: 2 * 2
|
> quote do: 2 * 2
|
||||||
|
|||||||
Reference in New Issue
Block a user