Skip to content

Instantly share code, notes, and snippets.

@fatihgokce
Created February 27, 2020 17:02
Show Gist options
  • Save fatihgokce/9ab26c373e151488c2c70c8a480fa90c to your computer and use it in GitHub Desktop.
Save fatihgokce/9ab26c373e151488c2c70c8a480fa90c to your computer and use it in GitHub Desktop.
fn foo(b: &mut u64) {
let x = &mut *b;
*x=52;
}
fn main() {
let mut x = 42;
foo(&mut x);
println!("{}",x);
let mut s1=5;//String::from("aa");
let s2=&mut s1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment