rust-exercises/rectangles/src/main.rs

13 lines
216 B
Rust
Raw Normal View History

fn main() {
2024-11-12 07:47:06 +00:00
let rect1 = (30, 50);
println!(
"The area of the rectangle is {} square pixels.",
2024-11-12 07:47:06 +00:00
area(rect1)
);
}
2024-11-12 07:47:06 +00:00
fn area(dimensions: (u32, u32)) -> u32 {
dimensions.0 * dimensions.1
}