Commit 0f85ceb4 authored by neverlord's avatar neverlord

erlang benchmark

parent ccfc72fb
...@@ -10,6 +10,8 @@ test ...@@ -10,6 +10,8 @@ test
*.tmp *.tmp
*.la *.la
*.lo *.lo
*.dump
*.beam
.libs/ .libs/
.deps/ .deps/
libcppa.pc libcppa.pc
......
-module(actor_creation).
-export([testee/1]).
testee(N) ->
if N > 0 ->
spawn(actor_creation, testee, [N-1]),
spawn(actor_creation, testee, [N-1])
end.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment