1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2024-12-04 03:25:08 +02:00

Merge pull request #118 from google/exercise-code-snippets

Explain why exercises are not editable
This commit is contained in:
Martin Geisler 2023-01-09 14:42:54 +01:00 committed by GitHub
commit 3ff2d5f43a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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>