1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-05-16 07:36:05 +02:00

Explain why exercises are not editable

From a discussion in #23.
This commit is contained in:
Martin Geisler 2023-01-05 15:34:56 +01:00
parent 1162c554c0
commit affb2526fe

View File

@ -5,3 +5,20 @@ In these exercises, we will explore two parts of Rust:
* Implicit conversions between types.
* Arrays and `for` loops.
<details>
A few things to consider while solving the exercises:
* Use a local Rust installation, if possible. This way you can get
auto-completion in your editor. See the page about [Using Cargo] for details
on installing Rust.
* Alternatively, use the Rust Playground.
The code snippets are not editable on purpose: the inline code snippets lose
their state if you navigate away from the page.
[Using Cargo]: ../../cargo.md
</details>