mirror of
https://github.com/rust-lang/rustlings.git
synced 2024-12-25 23:10:30 +00:00
Compare commits
6 commits
e525e52a7a
...
1e335d4910
Author | SHA1 | Date | |
---|---|---|---|
|
1e335d4910 | ||
|
38016cb2d6 | ||
|
fa6680ff76 | ||
|
2bccdcbd2c | ||
|
60e0d4ae8a | ||
|
a025ce0538 |
3 changed files with 18 additions and 4 deletions
12
README.md
12
README.md
|
@ -45,6 +45,18 @@ cargo install rustlings
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
> [!CAUTION]
|
||||||
|
> Don't try to clone the repository to do the exercises! `rust-analyzer` won't work in that case. Please follow the instructions above instead.
|
||||||
|
>
|
||||||
|
> <details>
|
||||||
|
> <summary>Why?</summary>
|
||||||
|
>
|
||||||
|
>The intended way to run Rustlings is to install the binary and run `rustlings init` as described in the installation/initialization sections. This generates a `Cargo.toml` (different than what you see in the repository) that includes each exercise as a separate binary target which is enough for `rust-analyzer` to work.
|
||||||
|
>
|
||||||
|
>If you just clone the repository and try to run and edit the exercises directly, the language server will not work.
|
||||||
|
>
|
||||||
|
> </details>
|
||||||
|
|
||||||
### Initialization
|
### Initialization
|
||||||
|
|
||||||
After installing Rustlings, run the following command to initialize the `rustlings/` directory:
|
After installing Rustlings, run the following command to initialize the `rustlings/` directory:
|
||||||
|
|
|
@ -4,9 +4,11 @@
|
||||||
#[rustfmt::skip]
|
#[rustfmt::skip]
|
||||||
#[allow(unused_variables, unused_assignments)]
|
#[allow(unused_variables, unused_assignments)]
|
||||||
fn main() {
|
fn main() {
|
||||||
let my_option: Option<()> = None;
|
let my_option: Option<&str> = None;
|
||||||
|
// Assume that you don't know the value of `my_option`.
|
||||||
|
// In the case of `Some`, we want to print its value.
|
||||||
if my_option.is_none() {
|
if my_option.is_none() {
|
||||||
println!("{:?}", my_option.unwrap());
|
println!("{}", my_option.unwrap());
|
||||||
}
|
}
|
||||||
|
|
||||||
let my_arr = &[
|
let my_arr = &[
|
||||||
|
|
|
@ -3,11 +3,11 @@ use std::mem;
|
||||||
#[rustfmt::skip]
|
#[rustfmt::skip]
|
||||||
#[allow(unused_variables, unused_assignments)]
|
#[allow(unused_variables, unused_assignments)]
|
||||||
fn main() {
|
fn main() {
|
||||||
let my_option: Option<()> = None;
|
let my_option: Option<&str> = None;
|
||||||
// `unwrap` of an `Option` after checking if it is `None` will panic.
|
// `unwrap` of an `Option` after checking if it is `None` will panic.
|
||||||
// Use `if-let` instead.
|
// Use `if-let` instead.
|
||||||
if let Some(value) = my_option {
|
if let Some(value) = my_option {
|
||||||
println!("{value:?}");
|
println!("{value}");
|
||||||
}
|
}
|
||||||
|
|
||||||
// A comma was missing.
|
// A comma was missing.
|
||||||
|
|
Loading…
Reference in a new issue