Advertisement
Guest User

Untitled

a guest
Mar 24th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. fn main() {
  2. let mut s = String::from("hello");
  3.  
  4. change(&mut s);
  5. }
  6.  
  7. fn change(some_string: &mut String) {
  8. some_string.push_str(", world");
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement