summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorRichthofen <jazzplato@gmail.com>2021-06-30 03:05:49 -0700
committerGitHub <noreply@github.com>2021-06-30 12:05:49 +0200
commitd20e413a68772cd493561f2651cf244e822b7ca5 (patch)
treeac39e274c8d165fd4f8854910ddbb438a371343f /README.md
parent633303d4b8163e349c118c6cbd216185efe2ba24 (diff)
feat(cli): Add "next" to run the next unsolved exercise. (#785)
* Add "run next" to run the next unsolved exercise. * Fix a grammar error in the message. * Update README.md with the suggested change Co-authored-by: marisa <mokou@fastmail.com> * Update the README.md for "rustlings hint next". Co-authored-by: marisa <mokou@fastmail.com>
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/README.md b/README.md
index ecb8bde..bbaea0c 100644
--- a/README.md
+++ b/README.md
@@ -97,6 +97,12 @@ In case you want to go by your own order, or want to only verify a single exerci
rustlings run myExercise1
```
+Or simply use the following command to run the next unsolved exercise in the course:
+
+```bash
+rustlings run next
+```
+
In case you get stuck, you can run the following command to get a hint for your
exercise:
@@ -104,6 +110,12 @@ exercise:
rustlings hint myExercise1
```
+You can also get the hint for the next unsolved exercise with the following command:
+
+``` bash
+rustlings hint next
+```
+
To check your progress, you can run the following command:
```bash
rustlings list