Skip to content

Instantly share code, notes, and snippets.

@leopard627
Created January 8, 2019 14:43
Show Gist options
  • Save leopard627/5047085dbe0e2627790c2c899e6c3323 to your computer and use it in GitHub Desktop.
Save leopard627/5047085dbe0e2627790c2c899e6c3323 to your computer and use it in GitHub Desktop.
let mut s = String::from("hello world");
let r1 = &s;
let r2 = &s;
let r3 = &mut s;
r3.push_str("Possible?");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment