rustlings-solutions/exercises/structs
2023-08-29 00:52:11 +02:00
..
README.md
structs1.rs
structs2.rs
structs3.rs Use u32 instead of i32 2023-08-29 00:52:11 +02:00

Structs

Rust has three struct types: a classic C struct, a tuple struct, and a unit struct.

Further information