README.md (315B)
1 # Strings 2 3 Rust has two string types, a string slice (`&str`) and an owned string (`String`). 4 We're not going to dictate when you should use which one, but we'll show you how 5 to identify and create them, as well as use them. 6 7 ## Further information 8 9 - [Strings](https://doc.rust-lang.org/book/ch08-02-strings.html)