1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-09-18 11:31:35 +02:00
rustlings/README.md

157 lines
5.9 KiB
Markdown
Raw Normal View History

2023-05-17 17:11:49 +02:00
<div class="oranda-hide">
2024-04-18 17:17:21 +02:00
# Rustlings πŸ¦€β€οΈ
2015-09-15 04:32:54 +02:00
2023-05-17 17:11:49 +02:00
</div>
2024-04-18 17:17:21 +02:00
Greetings and welcome to Rustlings.
This project contains small exercises to get you used to reading and writing Rust code.
This includes reading and responding to compiler messages!
2024-04-18 17:17:21 +02:00
It is recommended to do the Rustlings exercises in parallel to reading [the official Rust book](https://doc.rust-lang.org/book/), the most comprehensive resource for learning Rust πŸ“šοΈ
2024-04-18 17:17:21 +02:00
[Rust By Example](https://doc.rust-lang.org/rust-by-example/) is another recommended resource that you might find helpful.
It contains code examples and exercises similar to Rustlings, but online.
2019-01-09 21:02:47 +01:00
## Getting Started
2024-04-18 17:17:21 +02:00
### Installing Rust
2019-03-06 20:25:27 +01:00
2024-08-02 16:40:06 +02:00
Before installing Rustlings, you need to have the **latest version of Rust** installed.
2024-04-18 17:17:21 +02:00
Visit [www.rust-lang.org/tools/install](https://www.rust-lang.org/tools/install) for further instructions on installing Rust.
2024-07-07 15:41:35 +02:00
This will also install _Cargo_, Rust's package/project manager.
2019-03-06 20:25:27 +01:00
2024-04-26 03:44:16 +02:00
> 🐧 If you're on Linux, make sure you've installed `gcc` (for a linker).
>
> Deb: `sudo apt install gcc`.
> Dnf: `sudo dnf install gcc`.
2024-04-26 03:44:16 +02:00
> 🍎 If you're on MacOS, make sure you've installed Xcode and its developer tools by running `xcode-select --install`.
2024-04-18 17:17:21 +02:00
### Installing Rustlings
2024-04-18 17:17:21 +02:00
The following command will download and compile Rustlings:
2019-01-23 21:36:08 +01:00
```bash
2024-07-02 14:45:19 +02:00
cargo install rustlings
2019-01-23 21:36:08 +01:00
```
2024-04-26 02:00:42 +02:00
<details>
2024-04-26 03:20:34 +02:00
<summary><strong>If the installation fails…</strong> (<em>click to expand</em>)</summary>
2024-04-26 03:39:38 +02:00
- Make sure you have the latest Rust version by running `rustup update`
2024-07-02 14:45:19 +02:00
- Try adding the `--locked` flag: `cargo install rustlings --locked`
2024-04-26 03:39:38 +02:00
- Otherwise, please [report the issue](https://github.com/rust-lang/rustlings/issues/new)
2024-04-26 01:49:36 +02:00
2024-04-26 02:00:42 +02:00
</details>
2024-04-18 17:17:21 +02:00
### Initialization
2019-01-23 21:36:08 +01:00
2024-04-18 17:17:21 +02:00
After installing Rustlings, run the following command to initialize the `rustlings/` directory:
2019-01-23 21:36:08 +01:00
```bash
2024-04-18 17:17:21 +02:00
rustlings init
2019-01-23 21:36:08 +01:00
```
2024-07-13 12:00:22 +02:00
<details>
2024-07-13 12:02:39 +02:00
<summary><strong>If the command <code>rustlings</code> can't be found…</strong> (<em>click to expand</em>)</summary>
2024-07-13 12:00:22 +02:00
You are probably using Linux and installed Rust using your package manager.
2024-07-13 12:02:39 +02:00
Cargo installs binaries to the directory `~/.cargo/bin`.
Sadly, package managers often don't add `~/.cargo/bin` to your `PATH` environment variable.
2024-07-13 12:07:52 +02:00
The solution is to …
- either add `~/.cargo/bin` manually to `PATH`
- or to uninstall Rust from the package manager and install it using the official way with `rustup`: https://www.rust-lang.org/tools/install
2024-07-13 12:00:22 +02:00
</details>
2024-04-26 03:25:31 +02:00
Now, go into the newly initialized directory and launch Rustlings for further instructions on getting started with the exercises:
```bash
2024-04-18 17:17:21 +02:00
cd rustlings/
rustlings
```
2024-04-29 00:26:53 +02:00
## Working environment
### Editor
Our general recommendation is [VS Code](https://code.visualstudio.com/) with the [rust-analyzer plugin](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer).
But any editor that supports [rust-analyzer](https://rust-analyzer.github.io/) should be enough for working on the exercises.
### Terminal
While working with Rustlings, please use a modern terminal for the best user experience.
The default terminal on Linux and Mac should be sufficient.
On Windows, we recommend the [Windows Terminal](https://aka.ms/terminal).
2024-04-18 17:17:21 +02:00
## Doing exercises
2024-04-26 03:17:35 +02:00
The exercises are sorted by topic and can be found in the subdirectory `exercises/<topic>`.
For every topic, there is an additional `README.md` file with some resources to get you started on the topic.
We highly recommend that you have a look at them before you start πŸ“šοΈ
2024-04-18 17:17:21 +02:00
Most exercises contain an error that keeps them from compiling, and it's up to you to fix it!
2024-04-26 03:44:16 +02:00
Some exercises contain tests that need to pass for the exercise to be done βœ…
2024-04-26 03:17:35 +02:00
2024-07-02 14:45:19 +02:00
Search for `TODO` and `todo!()` to find out what you need to change.
Ask for hints by entering `h` in the _watch mode_ πŸ’‘
2024-04-26 03:17:35 +02:00
### Watch Mode
2024-04-26 03:25:31 +02:00
After [initialization](#initialization), Rustlings can be launched by simply running the command `rustlings`.
2024-04-26 03:17:35 +02:00
This will start the _watch mode_ which walks you through the exercises in a predefined order (what we think is best for newcomers).
It will rerun the current exercise automatically every time you change the exercise's file in the `exercises/` directory.
2024-04-18 17:17:21 +02:00
2024-04-26 03:17:35 +02:00
<details>
2024-04-26 03:20:34 +02:00
<summary><strong>If detecting file changes in the <code>exercises/</code> directory fails…</strong> (<em>click to expand</em>)</summary>
2022-03-29 15:04:52 +02:00
2024-05-13 02:37:32 +02:00
> You can add the **`--manual-run`** flag (`rustlings --manual-run`) to manually rerun the current exercise by entering `r` in the watch mode.
2024-04-26 03:29:05 +02:00
>
> Please [report the issue](https://github.com/rust-lang/rustlings/issues/new) with some information about your operating system and whether you run Rustlings in a container or virtual machine (e.g. WSL).
2019-01-23 21:36:08 +01:00
2024-04-26 03:17:35 +02:00
</details>
2024-04-18 17:17:21 +02:00
2024-04-26 03:17:35 +02:00
### Exercise List
2024-04-18 17:17:21 +02:00
2024-05-13 02:37:32 +02:00
In the [watch mode](#watch-mode) (after launching `rustlings`), you can enter `l` to open the interactive exercise list.
2024-04-26 03:17:35 +02:00
The list allows you to…
- See the status of all exercises (done or pending)
2024-04-26 03:39:38 +02:00
- `c`: Continue at another exercise (temporarily skip some exercises or go back to a previous one)
- `r`: Reset status and file of an exercise (you need to _reload/reopen_ its file in your editor afterwards)
2024-04-26 03:17:35 +02:00
See the footer of the list for all possible keys.
2024-04-18 17:17:21 +02:00
## Continuing On
2024-04-18 17:17:21 +02:00
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.
2024-07-02 16:09:05 +02:00
## Third-Party Exercises
Do you want to create your own set of Rustlings exercises to focus on some specific topic?
2024-07-02 16:26:59 +02:00
Or do you want to translate the original Rustlings exercises?
2024-07-07 00:28:17 +02:00
Then follow the link to the guide about [third-party exercises](https://github.com/rust-lang/rustlings/blob/main/THIRD_PARTY_EXERCISES.md)!
2024-07-02 16:09:05 +02:00
## Uninstalling Rustlings
2024-04-26 03:17:35 +02:00
If you want to remove Rustlings from your system, run the following command:
2022-03-29 15:04:52 +02:00
```bash
cargo uninstall rustlings
```
2019-01-23 21:36:08 +01:00
## Contributing
2024-04-26 03:17:35 +02:00
See [CONTRIBUTING.md](https://github.com/rust-lang/rustlings/blob/main/CONTRIBUTING.md) πŸ”—
## Contributors ✨
2024-04-18 17:17:21 +02:00
Thanks to [all the wonderful contributors](https://github.com/rust-lang/rustlings/graphs/contributors) πŸŽ‰