Skip to content

Instantly share code, notes, and snippets.

@davisp
Created March 26, 2012 09:13
Show Gist options
  • Save davisp/2204086 to your computer and use it in GitHub Desktop.
Save davisp/2204086 to your computer and use it in GitHub Desktop.
-module(erlbork).
-export([start/0]).
start() ->
spawn(fun() -> restarts() end),
loop().
restarts() ->
init:restart(),
timer:sleep(100),
restarts().
loop() ->
_Ctx = crypto:md5_init(),
loop().
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment