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