|
|
|
|
|
by jeremyjh
2672 days ago
|
|
> Elixir is not built on top of Erlang the language. It compiles to the same BEAM VM bytecode. Actually it is, at a semantic level. Elixir source is reduced to Erlang's abstract syntax tree format, which is represented in Erlang terms. The same Erlang compiler is used to generate BEAM code for both languages. This isn't just a detail - the ramifications of using Erlang semantics permeates the language. But not to the language's detriment in any way. |
|