blob: 3a7568375726b4da34ef5ec75902a15c5538a2d2 [file] [log] [blame]
// ANCHOR: here
mod front_of_house {
pub mod hosting {
pub fn add_to_waitlist() {}
}
}
use crate::front_of_house::hosting;
pub fn eat_at_restaurant() {
hosting::add_to_waitlist();
hosting::add_to_waitlist();
hosting::add_to_waitlist();
}
// ANCHOR_END: here
fn main() {}