Skip to content

Instantly share code, notes, and snippets.

@mariot
Created September 24, 2021 13:03
Show Gist options
  • Select an option

  • Save mariot/0c95af9dd17652328141d8385829214d to your computer and use it in GitHub Desktop.

Select an option

Save mariot/0c95af9dd17652328141d8385829214d to your computer and use it in GitHub Desktop.
Exemple ownership
fn main() {
let s1 = String::from("hello");
let s2 = s1;
println!("{}, world!", s1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment