Skip to content

Instantly share code, notes, and snippets.

@tonini
Created October 14, 2014 05:44
Show Gist options
  • Save tonini/901db1a3af271b0087de to your computer and use it in GitHub Desktop.
Save tonini/901db1a3af271b0087de to your computer and use it in GitHub Desktop.
parent = self()
# Spawns an Elixir process (not an operating system one!)
spawn_link(fn ->
send parent, {:msg, "hello world"}
end)
# Block until the message is received
receive do
{:msg, contents} -> IO.puts contents
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment