Guest User

Untitled

a guest
Apr 25th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. use std::collections::HashMap;
  2.  
  3. fn main() {
  4. let mut hash_map = HashMap::new();
  5. let some_string = "Hello".to_owned();
  6.  
  7. hash_map.insert(100, some_string);
  8. hash_map.insert(200, some_string);
  9. }
Add Comment
Please, Sign In to add comment