Update main.rs

fix "While let Conditional Loops" Code not match
pull/826/head
吴俊城 5 months ago committed by GitHub
parent d240e1e2ab
commit 46e3cf0793
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,14 +1,13 @@
fn main() { fn main() {
// ANCHOR: here // ANCHOR: here
let (tx, rx) = std::sync::mpsc::channel(); let mut stack = Vec::new();
std::thread::spawn(move || {
for val in [1, 2, 3] { stack.push(1);
tx.send(val).unwrap(); stack.push(2);
} stack.push(3);
});
while let Ok(value) = rx.recv() { while let Some(top) = stack.pop() {
println!("{value}"); println!("{top}");
} }
// ANCHOR_END: here // ANCHOR_END: here
} }

Loading…
Cancel
Save