Files
rustlings/exercises/22_clippy/clippy3.rs
T

30 lines
853 B
Rust
Raw Normal View History

2026-03-12 20:54:14 -04:00
// Here are some more easy Clippy fixes so you can see its utility 📎
// TODO: Fix all the Clippy lints.
#[rustfmt::skip]
#[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.
2026-03-23 03:36:33 -04:00
if let Some(my_option) = my_option {
println!("{}", my_option);
2026-03-12 20:54:14 -04:00
}
let my_arr = &[
2026-03-23 03:36:33 -04:00
-1, -2, -3,
2026-03-12 20:54:14 -04:00
-4, -5, -6
];
println!("My array! Here it is: {my_arr:?}");
2026-03-23 03:36:33 -04:00
let my_empty_vec = ();
vec![1, 2, 3, 4, 5].resize(0, 5);
2026-03-12 20:54:14 -04:00
println!("This Vec is empty, see? {my_empty_vec:?}");
let mut value_a = 45;
let mut value_b = 66;
// Let's swap these two!
2026-03-23 03:36:33 -04:00
std::mem::swap(&mut value_a, &mut value_b);
2026-03-12 20:54:14 -04:00
println!("value a: {value_a}; value b: {value_b}");
}