rustlings/exercises/modules/modules2.rs

26 lines
587 B
Rust
Raw Normal View History

2021-07-08 02:58:36 +07:00
// modules2.rs
// Make me compile! Execute `rustlings hint modules2` for hints :)
mod delicious_snacks {
2021-07-08 03:02:31 +07:00
pub use self::fruits::PEAR as fruit;
pub use self::veggies::CUCUMBER as veggie;
2021-07-08 02:58:36 +07:00
mod fruits {
pub const PEAR: &'static str = "Pear";
pub const APPLE: &'static str = "Apple";
}
mod veggies {
pub const CUCUMBER: &'static str = "Cucumber";
pub const CARROT: &'static str = "Carrot";
}
}
fn main() {
println!(
"favorite snacks: {} and {}",
delicious_snacks::fruit,
delicious_snacks::veggie
);
}