2023-05-29 13:39:08 -04: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 05:54:35 -04:00
|
|
|
// For these exercises, the code will fail to compile when there are Clippy
|
2023-11-12 05:39:14 -05:00
|
|
|
// warnings. Check Clippy's suggestions from the output to solve the exercise.
|
2020-02-14 09:25:03 -05:00
|
|
|
|
|
|
|
fn main() {
|
2024-07-04 13:46:04 -04:00
|
|
|
// TODO: Fix the Clippy lint in this line.
|
|
|
|
let pi = 3.14;
|
2024-07-01 05:54:35 -04:00
|
|
|
let radius: f32 = 5.0;
|
2021-12-15 11:46:27 -05:00
|
|
|
|
2024-07-01 05:54:35 -04:00
|
|
|
let area = pi * radius.powi(2);
|
2021-12-15 11:46:27 -05:00
|
|
|
|
2024-07-01 05:54:35 -04:00
|
|
|
println!("The area of a circle with radius {radius:.2} is {area:.5}");
|
2020-02-14 09:25:03 -05:00
|
|
|
}
|