|
|
|
|
|
by jerf
4011 days ago
|
|
It really isn't homoiconicity if you can't compile an AST with it. What you're describing are just simple data structures. Erlang has no user-definable data structures. I don't recall anything I've read explicitly stating this, but I've believed for a while that this was the case because it made moving terms across the network simpler. Thus, libraries aren't "exploiting" a few basic data types... they're stuck with a few basic data types. There's no alternative. That really has nothing to do with 'homoiconicity'. Erlang code is not a data structure, and it is not spelled in Erlang terms. And that would generally not be a good thing! Erlang's already plenty verbose without also having to be expressed as legal Erlang data terms. (The generally loosy-goosy typing that results is one of the reasons I don't like Erlang and am moving away from it. But YMMV.) |
|