mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-02-24 21:32:15 +08:00
21 lines
326 B
Rust
21 lines
326 B
Rust
|
struct Rectangle {
|
||
|
width: u32,
|
||
|
height: u32,
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
let rect1 = Rectangle {
|
||
|
width: 30,
|
||
|
height: 50,
|
||
|
};
|
||
|
|
||
|
println!(
|
||
|
"The area of the rectangle is {} square pixels.",
|
||
|
area(&rect1)
|
||
|
);
|
||
|
}
|
||
|
|
||
|
fn area(rectangle: &Rectangle) -> u32 {
|
||
|
rectangle.width * rectangle.height
|
||
|
}
|