By definition the integer division returns the quotient. Why 4613.9开发者_StackOverflow145 div 100. gives an error (\"bad argument\") ? For div the arguments need to be integers. / accepts arbitrary
Why is this function returning 3 elements ? [<<\"12345\">>,<<\"67890\">>,<<>>]
I write simple server application in erlang. Code of this application: https://gist.github.com/783117
As I make my journey through the wonderful world of Erlang I notice its beauty, but more importantly I notice its speed. Which makes me wonder, since Erlang is so good at spawning lightweight processe
I\'m trying to send data from the server written in Erlang: gen_tcp:send(Socket, \"Server connection refused \\r\\n\").
How can i wri开发者_StackOverflow中文版te information which store in dets to txt file? Thank you.Since you\'ve provided little to no information on what you mean or what you intend to do, the only ad
I want to test a mutex semaphore written in Erlang. The exported functions are: start/0, -> To start the mutex server.
What is the correct syntax when we use multiple patterns ? test3()-> test4(<<\"12345开发者_JAVA百科67890\">>).
How can i convert List in String in erlang? My list view:开发者_运维技巧 [{{19,59,51},{2011,1,14},\"fff\"},{{19,59,47},{2011,1,14},\"ASDfff\"}]
I would like to convert the binary string <<\"abc\"&g开发者_Go百科t;> into the following string \"<a><b><c>\" .