|
fn main() {
|
|
// ANCHOR: here
|
|
use std::collections::HashMap;
|
|
|
|
let mut scores = HashMap::new();
|
|
scores.insert(String::from("Blue"), 10);
|
|
|
|
scores.entry(String::from("Yellow")).or_insert(50);
|
|
scores.entry(String::from("Blue")).or_insert(50);
|
|
|
|
println!("{:?}", scores);
|
|
// ANCHOR_END: here
|
|
}
|