Is erlang considered managed or do you have to handle memory/pointers?
+11
A:
According to Craig Stuntz, all functional languages use garbage collection, which essentially means that they are managed languages. Functional programming features do not work well with the semantics of explicit memory release.
Garbage Collection in Erlang
http://prog21.dadgum.com/16.html
Robert Harvey
2009-12-02 23:06:32
+4
A:
I can assure you, you don't have to deal with pointers in Erlang as there is none of these (yeah!).
jldupont
2009-12-02 23:36:13