2023-05-29 13:39:08 -04:00
|
|
|
// You can bring module paths into scopes and provide new names for them with
|
2024-06-22 07:24:06 -04:00
|
|
|
// the `use` and `as` keywords.
|
2015-09-17 22:21:56 -04:00
|
|
|
|
2024-07-04 07:38:35 -04:00
|
|
|
#[allow(dead_code)]
|
2019-06-06 22:52:42 -04:00
|
|
|
mod delicious_snacks {
|
2024-06-25 20:26:04 -04:00
|
|
|
// TODO: Add the following two `use` statements after fixing them.
|
2024-06-22 07:24:06 -04:00
|
|
|
// use self::fruits::PEAR as ???;
|
|
|
|
// use self::veggies::CUCUMBER as ???;
|
2015-09-17 22:21:56 -04:00
|
|
|
|
2019-01-23 15:56:05 -05:00
|
|
|
mod fruits {
|
2024-06-22 07:24:06 -04:00
|
|
|
pub const PEAR: &str = "Pear";
|
|
|
|
pub const APPLE: &str = "Apple";
|
2015-09-17 22:21:56 -04:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:56:05 -05:00
|
|
|
mod veggies {
|
2024-06-22 07:24:06 -04:00
|
|
|
pub const CUCUMBER: &str = "Cucumber";
|
|
|
|
pub const CARROT: &str = "Carrot";
|
2015-09-17 22:21:56 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2019-06-06 22:52:42 -04:00
|
|
|
println!(
|
|
|
|
"favorite snacks: {} and {}",
|
|
|
|
delicious_snacks::fruit,
|
2024-06-22 07:24:06 -04:00
|
|
|
delicious_snacks::veggie,
|
2019-06-06 22:52:42 -04:00
|
|
|
);
|
2015-09-17 22:21:56 -04:00
|
|
|
}
|