Skip to content

Instantly share code, notes, and snippets.

@rust-play
Created July 22, 2019 05:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rust-play/ac25be266dee1c158be1743fddbe04ad to your computer and use it in GitHub Desktop.
Save rust-play/ac25be266dee1c158be1743fddbe04ad to your computer and use it in GitHub Desktop.
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