1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-05-04 22:46:08 +02:00

chore: Update docs for 2.0

This commit is contained in:
marisa 2019-11-11 18:02:56 +01:00
parent 9544ba1029
commit b4d41c1b7a
2 changed files with 11 additions and 3 deletions

View File

@ -35,8 +35,11 @@ You want to make sure where in the file you add your exercise. If you're not sur
```diff
...
+ [[exercises]]
+ name = "yourTopicN"
+ path = "exercises/yourTopic/yourTopicN.rs"
+ mode = "compile"
+ hint = """
+ Some kind of useful hint for your exercise."""
...
```

View File

@ -80,10 +80,15 @@ This will do the same as watch, but it'll quit after running.
In case you want to go by your own order, or want to only verify a single exercise, you can run:
```bash
rustlings run exercises/path/to/exercise.rs
rustlings run myExercise1
```
In case you get stuck, there is usually a hint at the bottom of each exercise.
In case you get stuck, you can run the following command to get a hint for your
exercise:
``` bash
rustlings hint myExercise1
```
## Testing yourself