Skip to content

Instantly share code, notes, and snippets.

@grahamking
Last active December 16, 2015 17:29
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 grahamking/5470333 to your computer and use it in GitHub Desktop.
Save grahamking/5470333 to your computer and use it in GitHub Desktop.
Rust: Owner memory example
fn main() {
let name: ~str,
other: ~str;
name = ~"Bob";
other = name;
println(other);
// This won't compile, because 'other' now
// owns the memory, you gave it away.
println(name);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment