mirror of
https://github.com/sunface/rust-by-practice.git
synced 2025-06-26 05:59:42 +00:00
7 lines
145 B
Rust
7 lines
145 B
Rust
use crate::front_of_house;
|
|
pub fn fix_incorrect_order() {
|
|
cook_order();
|
|
front_of_house::serving::serve_order();
|
|
}
|
|
|
|
pub fn cook_order() {} |