sends message to another process
send_msg(Destination,hello)
send_msg(DestID,Msg) (i,i)
server(DestID) (i) ID of the process who is the destination for the
message
void(Msg) (i) message that is send
Send the message Msg to the process given by DestID.
get_my_id(MyID), exec(Server,( something(Results), send_msg(MyID,Results))), something_else, rec_msg(Server,Answer).
No runtime errors.
prolog-process, client-server, object