📅  最后修改于: 2022-03-11 14:49:25.359000             🧑  作者: Mango
fn main() {
use std::collections::HashMap;
let mut scores = HashMap::new();
scores.insert(String::from("Blue"), 10);
scores.insert(String::from("Yellow"), 50);
}