Skip to content

Instantly share code, notes, and snippets.

@stochastic-thread
Created June 18, 2015 20:50
Show Gist options
  • Select an option

  • Save stochastic-thread/c58a85976ccf5a23d7e4 to your computer and use it in GitHub Desktop.

Select an option

Save stochastic-thread/c58a85976ccf5a23d7e4 to your computer and use it in GitHub Desktop.
defmodule Death do
def start do
spawn(fn -> loop() end)
end
def loop do
receive do
{:speak} ->
IO.puts "Arthur says hi"
loop
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment