Tagged Questions
2
votes
3answers
696 views
Future investment: Erlang vs. Scala [closed]
since concurrent programming becomes constantly more important, I was wondering
what you think about Erlang vs. Scala in that respect. It seems to me that Scala
has a larger user base and potentially ...
2
votes
2answers
284 views
why doesn't this erlang code work?
fib(N)->
P1 = spawn(fun concFib:conFib/0),
P2 = spawn(fun concFib:conFib/0),
X=rpc(P1,N-2),Y=rpc(P2,N-1),X+Y.
conFib()->
receive
{Client,N} -> ...