rustlings/exercises/10_modules/modules2.rs

27 lines
648 B
Rust
Raw Normal View History

// You can bring module paths into scopes and provide new names for them with
2024-06-22 14:24:06 +03:00
// the `use` and `as` keywords.
mod delicious_snacks {
2024-06-26 03:26:04 +03:00
// TODO: Add the following two `use` statements after fixing them.
2024-06-22 14:24:06 +03:00
// use self::fruits::PEAR as ???;
// use self::veggies::CUCUMBER as ???;
2019-01-23 23:56:05 +03:00
mod fruits {
2024-06-22 14:24:06 +03:00
pub const PEAR: &str = "Pear";
pub const APPLE: &str = "Apple";
}
2019-01-23 23:56:05 +03:00
mod veggies {
2024-06-22 14:24:06 +03:00
pub const CUCUMBER: &str = "Cucumber";
pub const CARROT: &str = "Carrot";
}
}
fn main() {
println!(
"favorite snacks: {} and {}",
delicious_snacks::fruit,
2024-06-22 14:24:06 +03:00
delicious_snacks::veggie,
);
}