Q&A
Ask and answer questions to make information more available to wider audiences.
Julius Caleb @calebjulius81   19, May 2023 12:00 AM
send and receive message
How message is send and receive in Erlang?
answers 1
 
Answer 1
Jude Tolliver @tolliverjude   22, May 2023 04:54 PM
For sending message Erlang uses the exclamation mark (!) as the operator for sending a message. The syntax used for sending a message is Pid ! Message. For receiving message Erlang uses Pattern Matching, to deliver a message from the message queue receive statement is used.