diff --git a/listings/ch19-patterns-and-matching/listing-19-02/src/main.rs b/listings/ch19-patterns-and-matching/listing-19-02/src/main.rs index 4605557..2479d84 100644 --- a/listings/ch19-patterns-and-matching/listing-19-02/src/main.rs +++ b/listings/ch19-patterns-and-matching/listing-19-02/src/main.rs @@ -1,14 +1,13 @@ fn main() { // ANCHOR: here - let (tx, rx) = std::sync::mpsc::channel(); - std::thread::spawn(move || { - for val in [1, 2, 3] { - tx.send(val).unwrap(); - } - }); + let mut stack = Vec::new(); - while let Ok(value) = rx.recv() { - println!("{value}"); + stack.push(1); + stack.push(2); + stack.push(3); + + while let Some(top) = stack.pop() { + println!("{top}"); } // ANCHOR_END: here }