mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-04-19 11:18:02 +08:00
14 lines
259 B
Rust
14 lines
259 B
Rust
mod front_of_house {
|
|
pub mod hosting {
|
|
fn add_to_waitlist() {}
|
|
}
|
|
}
|
|
|
|
pub fn eat_at_restaurant() {
|
|
// 绝对路径
|
|
crate::front_of_house::hosting::add_to_waitlist();
|
|
|
|
// 相对路径
|
|
front_of_house::hosting::add_to_waitlist();
|
|
}
|