2023-05-29 20:39:08 +03:00
|
|
|
// 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
|
2023-11-12 13:39:14 +03:00
|
|
|
// warnings. Check Clippy's suggestions from the output to solve the exercise.
|
2020-02-14 17:25:03 +03:00
|
|
|
|
|
|
|
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;
|
2021-12-15 19:46:27 +03:00
|
|
|
|
2024-07-01 12:54:35 +03:00
|
|
|
let area = pi * radius.powi(2);
|
2021-12-15 19:46:27 +03:00
|
|
|
|
2024-07-01 12:54:35 +03:00
|
|
|
println!("The area of a circle with radius {radius:.2} is {area:.5}");
|
2020-02-14 17:25:03 +03:00
|
|
|
}
|