2018-02-22 00:09:53 -06:00
|
|
|
// modules2.rs
|
2019-11-11 09:51:38 -06:00
|
|
|
// Make me compile! Execute `rustlings hint modules2` for hints :)
|
2015-09-17 21:21:56 -05:00
|
|
|
|
2019-11-11 06:38:24 -06:00
|
|
|
// I AM NOT DONE
|
|
|
|
|
2019-06-06 21:52:42 -05:00
|
|
|
mod delicious_snacks {
|
2019-01-23 14:56:05 -06:00
|
|
|
use self::fruits::PEAR as fruit;
|
|
|
|
use self::veggies::CUCUMBER as veggie;
|
2015-09-17 21:21:56 -05:00
|
|
|
|
2019-01-23 14:56:05 -06:00
|
|
|
mod fruits {
|
|
|
|
pub const PEAR: &'static str = "Pear";
|
|
|
|
pub const APPLE: &'static str = "Apple";
|
2015-09-17 21:21:56 -05:00
|
|
|
}
|
|
|
|
|
2019-01-23 14:56:05 -06:00
|
|
|
mod veggies {
|
|
|
|
pub const CUCUMBER: &'static str = "Cucumber";
|
|
|
|
pub const CARROT: &'static str = "Carrot";
|
2015-09-17 21:21:56 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2019-06-06 21:52:42 -05:00
|
|
|
println!(
|
|
|
|
"favorite snacks: {} and {}",
|
|
|
|
delicious_snacks::fruit,
|
|
|
|
delicious_snacks::veggie
|
|
|
|
);
|
2015-09-17 21:21:56 -05:00
|
|
|
}
|