Exercise 43

This commit is contained in:
akshitgautam42 2023-11-13 21:24:51 +05:30
parent 9fde4eed00
commit 19aedb6468

View File

@ -7,14 +7,15 @@
// Execute `rustlings hint modules2` or use the `hint` watch subcommand for a // Execute `rustlings hint modules2` or use the `hint` watch subcommand for a
// hint. // hint.
// I AM NOT DONE
mod delicious_snacks { mod delicious_snacks {
// TODO: Fix these use statements
use self::fruits::PEAR as ??? pub use self::fruits::PEAR as fruit;
use self::veggies::CUCUMBER as ??? pub use self::veggies::CUCUMBER as veggie;
mod fruits { mod fruits {
pub const PEAR: &'static str = "Pear"; pub const PEAR: &'static str = "Pear";
pub const APPLE: &'static str = "Apple"; pub const APPLE: &'static str = "Apple";
} }