You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rustlings/exercises/structs
Michael Walsh d1ee2daf14 fix(structs3.rs): assigned value to cents_per_gram in test
Intended to simplify the lesson by removing the need to figure out what the value is meant to be based on the tests.

Previous commits (9ca08b8f2b and 114b54cbdb (diff-ce1c232ff0ddaff909351bb84cb5bff423b5b9e04f21fd4db7ffe443e598e174)) removed the mathematical complexity, and I feel this addition is a needed change to further streamline the exercise.
3 years ago
..
README.md docs(exercises): updated all exercises readme files 3 years ago
structs1.rs feat: improve `watch` execution mode 5 years ago
structs2.rs chore: remove struct2 hint comment 4 years ago
structs3.rs fix(structs3.rs): assigned value to cents_per_gram in test 3 years ago

README.md

Structs

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

Further information