mirror of
https://github.com/sunface/rust-by-practice.git
synced 2025-06-27 06:29:42 +00:00
9 lines
193 B
Rust
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() {}
|