mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-06 21:59:45 +08:00
11 lines
224 B
Rust
11 lines
224 B
Rust
fn main() {
|
|
// ANCHOR: here
|
|
use std::collections::HashMap;
|
|
|
|
let mut scores = HashMap::new();
|
|
|
|
scores.insert(String::from("Blue"), 10);
|
|
scores.insert(String::from("Yellow"), 50);
|
|
// ANCHOR_END: here
|
|
}
|