box-o-sand/rustbook/rectangles/src/main.rs

14 lines
231 B
Rust
Raw Normal View History

2017-12-31 03:09:26 +00:00
fn main() {
let width1 = 30;
let height1 = 50;
println!(
"The area of the rectangle is {} square pixels.",
area(width1, height1)
);
}
fn area(width: u32, height: u32) -> u32 {
width * height
}