mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-03 11:58:04 +08:00
14 lines
182 B
Rust
Executable File
14 lines
182 B
Rust
Executable File
struct Rectangle {
|
|
width: u32,
|
|
height: u32,
|
|
}
|
|
|
|
fn main() {
|
|
let rect1 = Rectangle {
|
|
width: 30,
|
|
height: 50,
|
|
};
|
|
|
|
println!("rect1 is {:?}", rect1);
|
|
}
|