book/listings/ch08-common-collections/listing-08-24/src/main.rs

14 lines
316 B
Rust

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
}