()
| 20 | use super::{info, sleep}; |
| 21 | |
| 22 | pub fn cook_sauce_and_set_table() { |
| 23 | sleep(1.0); |
| 24 | info!("Cooking the sauce..."); |
| 25 | sleep(2.0); |
| 26 | info!("Sauce is ready! Setting the table..."); |
| 27 | sleep(2.0); |
| 28 | info!("Table is set!"); |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | fn main() { |