Code shared from the Rust Playground
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 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment