diff options
| author | Eli Blaney <5651165+eliblaney@users.noreply.github.com> | 2020-07-12 02:44:11 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-12 08:44:11 +0100 |
| commit | c52be7dfcbfb99c40002f22efd32972915efebe1 (patch) | |
| tree | dea2c7b0f42481b0498f300375c1fb838e219def /README.md | |
| parent | c2bfcf1c5409a32afff13adafd488dbe6c8f378d (diff) | |
docs: Add uninstall info to README.md
* docs: Add uninstall info to README.md
* docs: Format commands as bash block
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -101,6 +101,17 @@ rustlings hint myExercise1 After every couple of sections, there will be a quiz that'll test your knowledge on a bunch of sections at once. These quizzes are found in `exercises/quizN.rs`. +## Continuing On + +Once you've completed Rustlings, put your new knowledge to good use! Continue practicing your Rust skills by building your own projects, contributing to Rustlings, or finding other open-source projects to contribute to. + +If you'd like to uninstall Rustlings, you can do so by invoking cargo and removing the rustlings directory: + +```bash +cargo uninstall rustlings +rm -r rustlings/ # or on Windows: rmdir /s rustlings +``` + ## Completion Rustlings isn't done; there are a couple of sections that are very experimental and don't have proper documentation. These include: |
