All my rustlings solutions so far! If you want to try it by yourself, check out its official repository.
To run the exercises in the recommended order, execute:
rustlings watch
This will also rerun automatically every time you change a file in the exercises/
directory. If you want to only run it once, you can use:
rustlings verify
In case you want to go by your own order, or want to only verify a single exercise, you can run:
rustlings run myExercise1
Or simply use the following command to run the next unsolved exercise in the course:
rustlings run next
In case you get stuck, you can run the following command to get a hint for your exercise:
rustlings hint myExercise1
You can also get the hint for the next unsolved exercise with the following command:
rustlings hint next
To check your progress, you can run the following command:
rustlings list