• Criado com conceitos de Smalltalk, Ruby, Python, etc 1 parent = self() 2 3 # Spawns an Elixir process (not an operating 4 system one!) 5 spawn_link(fn -> 6 send parent, {:msg, "hello world"} 7 end) 8 9 # Block until the message is received 10 receive do 11 {:msg, contents} -> IO.puts contents 12 end <3