fix(structs): add hint comments

This commit is contained in:
mokou 2022-07-14 12:04:54 +02:00
parent 4531c21bf1
commit 886d599c96
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
// structs2.rs // structs2.rs
// Address all the TODOs to make the tests pass! // Address all the TODOs to make the tests pass!
// Execute `rustlings hint structs2` or use the `hint` watch subcommand for a hint.
// I AM NOT DONE // I AM NOT DONE

View File

@ -2,7 +2,7 @@
// Structs contain data, but can also have logic. In this exercise we have // Structs contain data, but can also have logic. In this exercise we have
// defined the Package struct and we want to test some logic attached to it. // defined the Package struct and we want to test some logic attached to it.
// Make the code compile and the tests pass! // Make the code compile and the tests pass!
// If you have issues execute `rustlings hint structs3` // Execute `rustlings hint structs3` or use the `hint` watch subcommand for a hint.
// I AM NOT DONE // I AM NOT DONE