comrade/examples/functions.rs
2025-03-07 04:33:35 +01:00

16 lines
322 B
Rust

use std::time::Duration;
use comrade::rally;
fn main() {
env_logger::init();
let items = vec![1, 2, 3, 4, 5];
let (input, output) = rally(items, |item: &_| {
std::thread::sleep(Duration::from_millis(item * 100));
return 0;
});
println!("RALLY RESULTS: {input:?} -> {output:?}");
}