diff options
| author | anuk909 <34924662+anuk909@users.noreply.github.com> | 2021-09-03 11:41:12 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-03 10:41:12 +0200 |
| commit | dfd2fab4f33d1bf59e2e5ee03123c0c9a67a9481 (patch) | |
| tree | 2a0ec7ff07f4e77da0968afa88ed280e654ea97b /info.toml | |
| parent | 96fc3017642b1b4b224390320111c6e305c736a3 (diff) | |
feat(modules): update exercises, add modules3 (#822)
Co-authored-by: diannasoriel <mokou@fastmail.com>
Diffstat (limited to 'info.toml')
| -rw-r--r-- | info.toml | 18 |
1 files changed, 13 insertions, 5 deletions
@@ -362,11 +362,19 @@ name = "modules2" path = "exercises/modules/modules2.rs" mode = "compile" hint = """ -The delicious_snacks module is trying to present an external -interface (the `fruit` and `veggie` constants) that is different than -its internal structure (the `fruits` and `veggies` modules and -associated constants). It's almost there except for one keyword missing for -each constant.""" +The delicious_snacks module is trying to present an external interface that is +different than its internal structure (the `fruits` and `veggies` modules and +associated constants). Complete the `use` statemants to fit the uses in main and +find the one keyword missing for both constants.""" + +[[exercises]] +name = "modules3" +path = "exercises/modules/modules3.rs" +mode = "compile" +hint = """ +UNIX_EPOCH and SystemTime are declared in the std::time module. Add a use statement +for these two to bring them into scope. You can use nested paths or the glob +operator to bring these two in using only one line.""" # COLLECTIONS |
