Skip to content

Instantly share code, notes, and snippets.

Created February 16, 2017 02:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/d1c64ffbe04588e9827387e69796a55d to your computer and use it in GitHub Desktop.
Save anonymous/d1c64ffbe04588e9827387e69796a55d to your computer and use it in GitHub Desktop.
Rust code shared from the playground
fn main() {
let z = 3;
let mut p = &z;
{
let x = 5;
p = &x;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment