Skip to content

Instantly share code, notes, and snippets.

Created February 16, 2017 02:50
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/7c6d3f51addc5ecca325600cc9d2a7cc to your computer and use it in GitHub Desktop.
Save anonymous/7c6d3f51addc5ecca325600cc9d2a7cc to your computer and use it in GitHub Desktop.
Rust code shared from the playground
fn main() {
let z = 3;
let r;
{
let x = 5;
let mut p = &x;
p = &z;
r = p;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment