This function is private
()
| 30 | pub mod help_customer { |
| 31 | // This function is private |
| 32 | fn seat_at_table() { |
| 33 | println!("Customer seated at table"); |
| 34 | } |
| 35 | |
| 36 | // Making help_customer public doesn't make this child |
| 37 | // function public so we must also make it public |