trpl-zh-cn/listings/ch07-managing-growing-projects/listing-07-13/src/lib.rs
2023-01-16 17:34:52 +08:00

12 lines
196 B
Rust
Executable File

mod front_of_house {
pub mod hosting {
pub fn add_to_waitlist() {}
}
}
use crate::front_of_house::hosting::add_to_waitlist;
pub fn eat_at_restaurant() {
add_to_waitlist();
}