Created
August 31, 2016 21:44
-
-
Save jorendorff/9916c56ccbd445299b6ca81427ad0674 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
~/dev/programming-erlang$ erl | |
Erlang/OTP 19 [erts-8.0] [source] [64-bit] [smp:8:8] [async-threads:10] [hipe] [kernel-poll:false] | |
Eshell V8.0 (abort with ^G) | |
1> timer:tc(loop, loop_test, [100, 10000]). | |
spawning processes... | |
starting test... | |
done! | |
{348645,ok} | |
2> timer:tc(loop, loop_test, [100, 10000]). | |
spawning processes... | |
starting test... | |
done! | |
{344680,ok} | |
3> timer:tc(loop, loop_test, [100, 10000]). | |
spawning processes... | |
starting test... | |
done! | |
{1075261,ok} | |
4> timer:tc(loop, loop_test, [100, 10000]). | |
spawning processes... | |
starting test... | |
done! | |
{1051737,ok} | |
5> timer:tc(loop, loop_test, [100, 10000]). | |
spawning processes... | |
starting test... | |
done! | |
{1058205,ok} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment