trpl-zh-cn/listings/ch16-fearless-concurrency/listing-16-06/src/main.rs
2022-02-06 16:43:51 +08:00

6 lines
72 B
Rust
Executable File

use std::sync::mpsc;
fn main() {
let (tx, rx) = mpsc::channel();
}