mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-02-24 21:32:15 +08:00
14 lines
251 B
Rust
Executable File
14 lines
251 B
Rust
Executable File
mod front_of_house {
|
|
pub mod hosting {
|
|
pub fn add_to_waitlist() {}
|
|
}
|
|
}
|
|
|
|
use self::front_of_house::hosting;
|
|
|
|
pub fn eat_at_restaurant() {
|
|
hosting::add_to_waitlist();
|
|
hosting::add_to_waitlist();
|
|
hosting::add_to_waitlist();
|
|
}
|