Skip to content

Instantly share code, notes, and snippets.

@emadflash
Created June 14, 2021 14:16
Show Gist options
  • Save emadflash/7fbf689f390429f0f71e49185099101a to your computer and use it in GitHub Desktop.
Save emadflash/7fbf689f390429f0f71e49185099101a to your computer and use it in GitHub Desktop.
// cpp
string s { "aaaa" };
auto x = std::move(s);
s = "some other shit";
cout << s;
// rust
let x = String::from("aaaa");
let y = x;
println!("{}", x);
println!("{}", y);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment