Skip to content

Instantly share code, notes, and snippets.

@kunigami
Created April 12, 2019 04:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kunigami/944345712189ba9a6542db0933ba316b to your computer and use it in GitHub Desktop.
Save kunigami/944345712189ba9a6542db0933ba316b to your computer and use it in GitHub Desktop.
let mut num = 5;
let r1 = &num as *const i32;
unsafe {
println!("r1 is: {}", *r1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment