mirror of https://github.com/KaiserY/trpl-zh-cn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
386 B
14 lines
386 B
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
|
|
}
|