Is a struct now

This commit is contained in:
Dan Buch 2020-11-28 17:08:20 -05:00
parent c0630fde8c
commit 0e143ca100
Signed by: meatballhat
GPG Key ID: 9685130D8B763EA7

View File

@ -1,12 +1,20 @@
struct Rectangle {
width: u32,
height: u32,
}
fn main() {
let rect1 = (30, 50);
let rect1 = Rectangle {
width: 30,
height: 50,
};
println!(
"The area of the rectangle is {} square pixels.",
area(rect1)
area(&rect1)
);
}
fn area(dimensions: (u32, u32)) -> u32 {
dimensions.0 * dimensions.1
fn area(rectangle: &Rectangle) -> u32 {
rectangle.width * rectangle.height
}