rustlings/exercises/06_move_semantics/README.md

11 lines
443 B
Markdown
Raw Normal View History

# Move Semantics
2019-01-23 23:02:06 +03:00
These exercises are adapted from [pnkfelix](https://github.com/pnkfelix)'s [Rust Tutorial](https://pnkfelix.github.io/rust-examples-icfp2014/) -- Thank you Felix!!!
## Further information
2019-01-23 23:02:06 +03:00
For this section, the book links are especially important.
2019-06-07 06:17:22 +03:00
- [Ownership](https://doc.rust-lang.org/book/ch04-01-what-is-ownership.html)
- [Reference and borrowing](https://doc.rust-lang.org/book/ch04-02-references-and-borrowing.html)