mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-03 03:50:29 +08:00
6 lines
72 B
Rust
6 lines
72 B
Rust
use std::sync::mpsc;
|
|
|
|
fn main() {
|
|
let (tx, rx) = mpsc::channel();
|
|
}
|