this article is a summary of Chapter 4.6.3 - 4.6.6 of Rust Course (course.rs/)
Multiple Producer Single Consumer
The Rust standard library provides a channel among multiple threads called std::sync::mpsc. mpsc is short for multiple producer, single c...