rustlings/README.md
Krishna Kumar cb4e8b5150
Add quick start instructions to README
Added clear steps to install and run Rustlings, including rustlings watch command.
2026-03-29 10:00:47 +05:30

30 lines
839 B
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# [Rustlings](https://rustlings.rust-lang.org) 🦀
Small exercises to get you used to reading and writing [Rust](https://www.rust-lang.org) code - _Recommended in parallel to reading [the official Rust book](https://doc.rust-lang.org/book) 📚_
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.