What I wanted was a way to pass arguments into functions which resembled a ruby hash map. Although maybe this is a bad fit for Erlang, I\'m not sure yet
What console output commands开发者_开发技巧 are available in Erlang? I know about io:format but was wondering what other output libraries exist.For quick debugging, I find quite useful the erlang:dis
I can see why parameterised modules are used so much, as they allow us to do things like: X = y:new(\"param\").
How do I change the开发者_JAVA技巧 process name of an Erlang VM? It isn\'t very convenient to have beam listed when I do ps -A...
At one point while traveling the web, I came across a great page which contrasted the clarity and terseness of different methods of doing a sequence of operations without having to make a bunch of thr
in an Erlang process, how could i receive from an ssl socket, and at the same time receive from another erlang process with the receive primitive?
I\'ve seen module_name:new used in Erlang code, but there is no reference to a \"ne开发者_运维问答w\" function in the module_name module. What does \"new\" do?It is for \"parametrized module\": see he
Has 开发者_运维技巧anyone managed to build Erlang on OpenSolaris? Every time I try I get: user@opensolaris:~/otp_src_R13B03# make clean
Consider the following Erlang code: -module(testit). -export([testit/0]). testit() -> Pid = spawn(fun testit_proc/0),
I\'m new to Erlang and am trying to program a bounded-buffer problem program.It is almost working, except for making sure the producers don\'t get too far ahead and overwrite unconsumed data.To handle