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

17 lines
321 B
Rust

fn main() {
// ANCHOR: here
use std::collections::HashMap;
let text = "hello world wonderful world";
let mut map = HashMap::new();
for word in text.split_whitespace() {
let count = map.entry(word).or_insert(0);
*count += 1;
}
println!("{map:?}");
// ANCHOR_END: here
}