- 2 ripe avocados
- 2 tomatoes (i like to use dryed tomatoes when available)
- 1/2 clove of garlic
- 1/2 onion
- lime juice from half a lime
- chily and/or cayenne pepper
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
# Node A: | |
# iex --sname "nodea" | |
Process.register self, :iex | |
# Blocking | |
receive do | |
{ :hello, pid } -> | |
IO.puts "Hello from #{inspect(pid)}" | |
end |