mirror of
https://github.com/sunface/rust-by-practice.git
synced 2025-06-24 21:19:42 +00:00
13 lines
242 B
Rust
13 lines
242 B
Rust
mod front_of_house;
|
|
mod back_of_house;
|
|
|
|
pub use crate::front_of_house::hosting;
|
|
|
|
pub fn eat_at_restaurant() -> String {
|
|
front_of_house::hosting::add_to_waitlist();
|
|
|
|
back_of_house::cook_order();
|
|
|
|
String::from("yummy yummy!")
|
|
}
|