diff options
| author | liv <liv@fastmail.com> | 2019-01-23 21:02:06 +0100 |
|---|---|---|
| committer | liv <liv@fastmail.com> | 2019-01-23 21:02:06 +0100 |
| commit | a49a22071ab0c675e43e03ab9c08b0153d8f9c74 (patch) | |
| tree | 20348ceb53e94aca5a63c207b6685f0501f1f03f /exercises/strings | |
| parent | dc1f3b79f8b528659e39057ac733d07e1051bc4d (diff) | |
redo the section readmes
Diffstat (limited to 'exercises/strings')
| -rw-r--r-- | exercises/strings/REAMDE.md | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/exercises/strings/REAMDE.md b/exercises/strings/REAMDE.md index 76b74d7..b79ac06 100644 --- a/exercises/strings/REAMDE.md +++ b/exercises/strings/REAMDE.md @@ -1 +1,9 @@ -For this exercise check out the chapter [Strings](https://doc.rust-lang.org/book/2018-edition/ch08-02-strings.html) of the Rust Book.
\ No newline at end of file +### Strings + +Rust has two string types, a string slice (`&str`) and an owned string (`String`). +We're not going to dictate when you should use which one, but we'll show you how +to identify and create them, as well as use them. + +#### Book Sections + +- [Strings](https://doc.rust-lang.org/stable/book/ch08-02-strings.html) |
