I am brand new to Go and new to distributed systems programming in general. My team is doing some messing around with the language and I was wondering what a simple way to send messages between different VMs was using Go?
For example, an example where 2 or more VMs were running some sort of procedure or service, and one of the VMs could send some sort of message to the other VM and have the other VM do something with the data and send back a message of its own.
Any example of 2 VMs communicating with each other using Go would be great. Thanks in advance!