trpl-zh-cn/listings/ch08-common-collections/listing-08-22/src/main.rs
2022-02-07 16:14:15 +08:00

14 lines
386 B
Rust
Executable File

fn main() {
// ANCHOR: here
use std::collections::HashMap;
let field_name = String::from("Favorite color");
let field_value = String::from("Blue");
let mut map = HashMap::new();
map.insert(field_name, field_value);
// 这里 field_name 和 field_value 不再有效,
// 尝试使用它们看看会出现什么编译错误!
// ANCHOR_END: here
}