Does Erlang have libraries? Like math or stdio, from the C language. Where can they be found?
And at to the second part of the Q as to where they can be found then that depends on your installation. Default location is `/usr/local/lib/erlang/lib`. But since you never need to "include" them like in C you really don't need to worry about that.
Jon Gretar
2010-06-28 21:51:57
Also, here's the motherload: http://projects.trapexit.org/web/
scvalex
2010-07-09 21:10:52
+4
A:
If You want to "locate" them You can use
code:root_dir().
or
code:lib_dir().
to "find" them...
bsmr
2010-06-29 04:27:32
+1
A:
You can allways install any library you need, compile, and point the enviroment ERL_LIBS var to it, example ..
mkdir ~/my_erlang_libs
cp my_wonderfull_erlang_lib ~/my_erlang_libs
export ERL_LIBS=~/my_erlang_libs
Regards.
mdaguete
2010-06-30 13:03:49