mirror of https://github.com/KaiserY/trpl-zh-cn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
474 B
20 lines
474 B
use std::thread;
|
|
use std::time::Duration;
|
|
|
|
fn simulated_expensive_calculation(intensity: u32) -> u32 {
|
|
println!("calculating slowly...");
|
|
thread::sleep(Duration::from_secs(2));
|
|
intensity
|
|
}
|
|
|
|
fn generate_workout(intensity: u32, random_number: u32) {}
|
|
|
|
// ANCHOR: here
|
|
fn main() {
|
|
let simulated_user_specified_value = 10;
|
|
let simulated_random_number = 7;
|
|
|
|
generate_workout(simulated_user_specified_value, simulated_random_number);
|
|
}
|
|
// ANCHOR_END: here
|