Mostly in educational purposes I\'m trying to write a task (task is an open_port({spawn_executable, Command})) scheduler.
Suppose I create new local process in an Erlang application, and i want to send to it a big message. -module(chain_hello).
Since Erlang i开发者_JAVA百科s based upon Prolog, does this mean that Erlang is a Constraint-Logic Language?
This line fails with a badarg exception: register(myproc, self()), 开发者_StackOverflow社区The documentation says that self/0 returns a pid and that register/2 takes a pid. So what gives?
I am implementing client agent for Robocup Soccer simulator in Erlang. Simulator sends sensory information to client in form of S-expressions. Like this
When calling shell scripts from Erlang, I generally need their exit status (0 or something else), so I run them using this function:
I\'m in a group at work reading Seven Languages in Seven Weeks by Bruce A. Tate and we are having a presentation on one language each week.I\'m partially responsible 开发者_如何转开发for Erlang in 2 w
This has been my current routine sudo nohup erl -sname foo -pa ./ebin -run foo_supervisor shell -noshell -noinput &
I am quite new to erlang and yaws. I after playing around with the language and easy yaws features like ehtml and normal appmods I tried to write a yapp. I followed http://yaws.hyber.org/yapp_intro.ya
I am struggling a little coming to grips with the OTP development model as I convert some code into an OTP app.