Consider this example: ```rust use futures::channel::mpsc; fn main() { let (tx, rx) = mpsc::channel(1); for i in 0..100 { tx.clone().try_send(i).unwrap(); } println!("BAM!!!") } ``` And you will see the message in the console!