summaryrefslogtreecommitdiff
path: root/exercises/strings/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/strings/README.md')
-rw-r--r--exercises/strings/README.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/exercises/strings/README.md b/exercises/strings/README.md
new file mode 100644
index 0000000..b79ac06
--- /dev/null
+++ b/exercises/strings/README.md
@@ -0,0 +1,9 @@
+### 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)