Skip to content

Commit 4e3bd8d

Browse files
author
Jean-Philippe Moresmau
committed
Renamed readme files properly
1 parent 3073ff3 commit 4e3bd8d

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

exercises/functions/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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+
#### Book Sections
8+
9+
- [Strings](https://doc.rust-lang.org/stable/book/ch08-02-strings.html)

0 commit comments

Comments
 (0)