From cb4e8b51505daa5ee469fb0af74d9565d483dea1 Mon Sep 17 00:00:00 2001 From: Krishna Kumar Date: Sun, 29 Mar 2026 10:00:47 +0530 Subject: [PATCH] Add quick start instructions to README Added clear steps to install and run Rustlings, including rustlings watch command. --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/README.md b/README.md index 0ae6265d..ab77239d 100644 --- a/README.md +++ b/README.md @@ -5,3 +5,25 @@ Small exercises to get you used to reading and writing [Rust](https://www.rust-l Visit the **website** for a demo, info about setup and more: ## ➡️ [rustlings.rust-lang.org](https://rustlings.rust-lang.org) ⬅️ +## Quick Start + +If you are returning to Rustlings, you can simply run: + +rustlings watch + +To set up Rustlings for the first time: + +1. Install Rust: + https://www.rust-lang.org/tools/install + +2. Clone this repository: + git clone https://github.com/rust-lang/rustlings + cd rustlings + +3. Install Rustlings: + cargo install --path . + +4. Start Rustlings: + rustlings watch + +This command will automatically run and check your exercises as you work.