trpl-zh-cn/listings/ch07-managing-growing-projects/listing-07-07/src/lib.rs

14 lines
263 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
mod front_of_house {
pub mod hosting {
pub fn add_to_waitlist() {}
}
}
pub fn eat_at_restaurant() {
2022-02-07 15:06:23 +08:00
// 绝对路径
2022-02-06 16:43:51 +08:00
crate::front_of_house::hosting::add_to_waitlist();
2022-02-07 15:06:23 +08:00
// 相对路径
2022-02-06 16:43:51 +08:00
front_of_house::hosting::add_to_waitlist();
}