rustlings-solutions/exercises/22_clippy/clippy3.rs

26 lines
693 B
Rust
Raw Permalink Normal View History

2022-07-15 10:28:47 +00:00
// clippy3.rs
2023-09-10 16:38:07 +00:00
//
2022-07-15 10:28:47 +00:00
// Here's a couple more easy Clippy fixes, so you can see its utility.
// No hints.
2022-07-15 10:28:47 +00:00
#[allow(unused_variables, unused_assignments)]
fn main() {
let my_option: Option<()> = None;
if my_option.is_none() {
2023-09-10 16:38:07 +00:00
println!("This is none!");
2022-07-15 10:28:47 +00:00
}
2023-09-10 16:38:07 +00:00
let my_arr = &[-1, -2, -3, -4, -5, -6];
2022-07-15 10:28:47 +00:00
println!("My array! Here it is: {:?}", my_arr);
2023-09-10 16:38:07 +00:00
let mut my_empty_vec = vec![1, 2, 3, 4, 5];
my_empty_vec.clear();
2022-07-15 10:28:47 +00: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!
2023-09-10 16:38:07 +00:00
std::mem::swap(&mut value_a, &mut value_b);
2022-07-15 10:28:47 +00:00
println!("value a: {}; value b: {}", value_a, value_b);
}