Created
January 8, 2019 14:43
-
-
Save leopard627/5047085dbe0e2627790c2c899e6c3323 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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