We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3073ff3 commit 4e3bd8dCopy full SHA for 4e3bd8d
exercises/functions/README.md
@@ -0,0 +1,7 @@
1
+### Functions
2
+
3
+Here, you'll learn how to write functions and how Rust's compiler can trace things way back.
4
5
+#### Book Sections
6
7
+- [How Functions Work](https://doc.rust-lang.org/stable/book/ch03-03-how-functions-work.html)
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.
8
9
+- [Strings](https://doc.rust-lang.org/stable/book/ch08-02-strings.html)
0 commit comments