mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-02-24 13:22:19 +08:00
7 lines
102 B
Rust
Executable File
7 lines
102 B
Rust
Executable File
use std::collections::HashMap;
|
|
|
|
fn main() {
|
|
let mut map = HashMap::new();
|
|
map.insert(1, 2);
|
|
}
|