Files
rust-by-practice/practices/hello-package/src/lib.rs
2022-03-14 21:14:52 +08:00

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!")
}