2016 Update
This commit is contained in:
parent
948b86eafa
commit
dcf5d15da3
7965 changed files with 139854 additions and 31002 deletions
|
|
@ -0,0 +1,9 @@
|
|||
use std::collections::HashMap;
|
||||
fn main() {
|
||||
let mut olympic_medals = HashMap::new();
|
||||
olympic_medals.insert("United States", (1072, 859, 749));
|
||||
olympic_medals.insert("Soviet Union", (473, 376, 355));
|
||||
olympic_medals.insert("Great Britain", (246, 276, 284));
|
||||
olympic_medals.insert("Germany", (252, 260, 270));
|
||||
println!("{:?}", olympic_medals);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue