The Actor-model was defined in a 1973 paper by Carl Hewitt, but has been popularized by the Erlang language. I开发者_如何学Python believe the parts of Erlang that aren\'t self-hosted (written in Erlan
After reading this answer, I want to underst开发者_StackOverflow社区and if the same applies to the calls to gen_tcp:recv(Socket, Length). My understanding of the documentation is that this if more tha
Say you have an Erlang record of the following kind for songs: rd(song, {artist, title, album}). Song = #song{artist = <<\"oasis\">>, title = <<\"wonderwall\">>, album = <&
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
The include directive is usually used for a .hrl file at the top of an .erl file. But, I would like to use inclu开发者_如何学Pythonde from the Erlang console directly.
I am trying to cross-compile Erlang and running into a weird bug. The commands used are make clean ./otp_build configure --host=arm-none-linux-gnueabi --build=i686-pc-linux-gnu
I want to print integer values to a file. I am able to write string values to the file, but when I try to write an integer value it gives an error:
I am trying to use RabbitMQ for a distributed system that would work something like: a producer puts in a queue a JSON-formatted list of order ids
The following shell sessions shows some behavior I would like to understand: 1> A = \"Some text\". \"Some text\"
I\'m reading Programming Erlang by Joe Armstrong(Pragmatic Bookshelf). In name_server.erl source code on Chapter 16, Where\'s Dict variable from? Calling dict:new() generates Dict automatically? And,