rust-by-practice/practices/hello-package/src/front_of_house/hosting.rs

7 lines
103 B
Rust

pub fn add_to_waitlist() {}
pub fn seat_at_table() -> String {
String::from("sit down please")
}