diff --git a/ejercicios/reto08/src/main.rs b/ejercicios/reto08/src/main.rs index a9b711d..88ad6aa 100644 --- a/ejercicios/reto08/src/main.rs +++ b/ejercicios/reto08/src/main.rs @@ -22,7 +22,8 @@ fn seudorandom() -> u32 { .unwrap() as u32; while now > 100 { - now = now - 100; + println!("{}", now); + now = now - 101; } now }