File tree 3 files changed +3
-4
lines changed
3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 1
1
// modules1.rs
2
- // Make me compile! Execute `rustlings hint modules1` for hints :)
2
+ // Execute `rustlings hint modules1` or use the `hint` watch subcommand for a hint.
3
3
4
4
// I AM NOT DONE
5
5
Original file line number Diff line number Diff line change 1
1
// modules2.rs
2
2
// You can bring module paths into scopes and provide new names for them with the
3
3
// 'use' and 'as' keywords. Fix these 'use' statements to make the code compile.
4
- // Make me compile! Execute `rustlings hint modules2` for hints :)
4
+ // Execute `rustlings hint modules2` or use the `hint` watch subcommand for a hint.
5
5
6
6
// I AM NOT DONE
7
7
8
8
mod delicious_snacks {
9
-
10
9
// TODO: Fix these use statements
11
10
use self :: fruits:: PEAR as ???
12
11
use self :: veggies:: CUCUMBER as ???
Original file line number Diff line number Diff line change 3
3
// and especially from the Rust standard library into your scope.
4
4
// Bring SystemTime and UNIX_EPOCH
5
5
// from the std::time module. Bonus style points if you can do it with one line!
6
- // Make me compile! Execute `rustlings hint modules3` for hints :)
6
+ // Execute `rustlings hint modules3` or use the `hint` watch subcommand for a hint.
7
7
8
8
// I AM NOT DONE
9
9
You can’t perform that action at this time.
0 commit comments