This commit is contained in:
JMARyA 2025-04-27 19:26:34 +02:00
parent dcebded8a3
commit 10e5c77454
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
3 changed files with 6 additions and 7 deletions

View file

@ -9,8 +9,9 @@ fn main() {
let (input, output) = rally(items, |item: &_| {
std::thread::sleep(Duration::from_millis(item * 100));
return 0;
});
return Some(0);
})
.unwrap();
println!("RALLY RESULTS: {input:?} -> {output:?}");
}