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

9 lines
193 B
Rust

pub fn take_order() {}
pub fn serve_order() {}
pub fn take_payment() {}
// Maybe you don't want the guest hearing the your complaining about them
// So just make it private
fn complain() {}