mirror of
https://github.com/rust-lang/rustlings.git
synced 2025-12-21 23:57:30 +02:00
31 lines
843 B
Rust
31 lines
843 B
Rust
// Here are some more easy Clippy fixes so you can see its utility.
|
|
// TODO: Fix all the Clippy lints.
|
|
|
|
#[allow(unused_variables, unused_assignments)]
|
|
fn main() {
|
|
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() {
|
|
println!("{}", my_option.unwrap());
|
|
}
|
|
|
|
#[rustfmt::skip]
|
|
let my_arr = &[
|
|
-1, -2, -3
|
|
-4, -5, -6
|
|
];
|
|
println!("My array! Here it is: {my_arr:?}");
|
|
|
|
let mut my_vec = vec![1, 2, 3, 4, 5];
|
|
my_vec.resize(0, 5);
|
|
println!("This Vec is empty, see? {my_vec:?}");
|
|
|
|
let mut value_a = 45;
|
|
let mut value_b = 66;
|
|
// Let's swap these two!
|
|
value_a = value_b;
|
|
value_b = value_a;
|
|
println!("value a: {value_a}; value b: {value_b}");
|
|
}
|