mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-02-24 21:32:15 +08:00
6 lines
72 B
Rust
Executable File
6 lines
72 B
Rust
Executable File
use std::sync::mpsc;
|
|
|
|
fn main() {
|
|
let (tx, rx) = mpsc::channel();
|
|
}
|