how do you send data between two different rust programs on the same computer(not over internet). E.G:
how would you send a String from one rust program to another?
//! sender.rs
pub fn main() {
let message = "Hello reciever!";
... send message
}
//! reciever.rs
pub fn main() {
... recieve message
println!("message recieved: {:#?}", message)
}