mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-02-24 13:22:19 +08:00
11 lines
160 B
Rust
Executable File
11 lines
160 B
Rust
Executable File
fn deliver_order() {}
|
|
|
|
mod back_of_house {
|
|
fn fix_incorrect_order() {
|
|
cook_order();
|
|
super::deliver_order();
|
|
}
|
|
|
|
fn cook_order() {}
|
|
}
|