trpl-zh-cn/listings/ch16-fearless-concurrency/listing-16-06/src/main.rs

6 lines
72 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
use std::sync::mpsc;
fn main() {
let (tx, rx) = mpsc::channel();
}