rustlings/exercises/22_clippy/clippy1.rs

16 lines
508 B
Rust
Raw Permalink Normal View History

// The Clippy tool is a collection of lints to analyze your code so you can
// catch common mistakes and improve your Rust code.
//
2024-07-01 12:54:35 +03:00
// For these exercises, the code will fail to compile when there are Clippy
// warnings. Check Clippy's suggestions from the output to solve the exercise.
fn main() {
2024-07-04 20:46:04 +03:00
// TODO: Fix the Clippy lint in this line.
let pi = 3.14;
2024-07-01 12:54:35 +03:00
let radius: f32 = 5.0;
2024-07-01 12:54:35 +03:00
let area = pi * radius.powi(2);
2024-07-01 12:54:35 +03:00
println!("The area of a circle with radius {radius:.2} is {area:.5}");
}