Merge branch 'new' into new-readme-more-explicit
This commit is contained in:
commit
c37ba3e697
@ -1,6 +1,6 @@
|
|||||||
# rustlings
|
# rustlings
|
||||||
|
|
||||||
Greetings and welcome to rustlings. This project contains small exercises get you used to reading and writing code. This includes reading and responding to compiler messages!
|
Greetings and welcome to rustlings. This project contains small exercises to get you used to reading and writing code. This includes reading and responding to compiler messages!
|
||||||
|
|
||||||
## How to get started
|
## How to get started
|
||||||
|
|
||||||
@ -30,7 +30,7 @@ If you choose to not install rustlings, just replace `rustlings` with `cargo run
|
|||||||
|
|
||||||
## Doing exercises
|
## Doing exercises
|
||||||
|
|
||||||
The execises are sorted by topic and can be found in the subdirectory `rustlings/exercises/<topic>`.
|
The exercises are sorted by topic and can be found in the subdirectory `rustlings/exercises/<topic>`. For every topic there is an additional README file with some resources to get you started on the topic. We really recommend, that you have a look at them before you start.
|
||||||
|
|
||||||
For every topic there is an additional README file with some resources to get you started on the topic. We really recommend, that you have a look at them before you start.
|
For every topic there is an additional README file with some resources to get you started on the topic. We really recommend, that you have a look at them before you start.
|
||||||
|
|
||||||
|
5
exercises/error_handling/README.md
Normal file
5
exercises/error_handling/README.md
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
For this exercise check out the sections:
|
||||||
|
- [Error Handling](https://doc.rust-lang.org/book/2018-edition/ch09-02-recoverable-errors-with-result.html)
|
||||||
|
- [Generics](https://doc.rust-lang.org/book/2018-edition/ch10-01-syntax.html)
|
||||||
|
|
||||||
|
of the Rust Book.
|
1
exercises/functions/REAMDE.md
Normal file
1
exercises/functions/REAMDE.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
For this exercise check out the chapter [Functions](https://doc.rust-lang.org/book/2018-edition/ch03-03-how-functions-work.html) of the Rust Book.
|
1
exercises/if/REAMDE.md
Normal file
1
exercises/if/REAMDE.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
For this exercise check out the chapter [If](https://doc.rust-lang.org/book/2018-edition/ch03-05-control-flow.html?highlight=control,fl#control-flow) of the Rust Book.
|
2
exercises/macros/README.md
Normal file
2
exercises/macros/README.md
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
For this exercise check out the section [Macros](https://doc.rust-lang.org/book/2018-edition/macros.html) and the chapter
|
||||||
|
[Macros Appendix](https://doc.rust-lang.org/book/2018-edition/appendix-04-macr |