Send/Receive message

  1. go :: Process ()
  2. go = do
  3. pid <- spawn recv
  4. pid ! :msg
  5. recv :: Process ()
  6. recv = receive x -> printf "recv: %s" (showAny x)