Random number generator now spawns bee's

This commit is contained in:
Literally A Penguin
2024-09-25 18:15:43 -05:00
committed by GitHub
parent a84b085a2d
commit 18800b55df

View File

@ -5,7 +5,7 @@ fn main() {
println!("Guess your answer");
println!("That was wrong, dipshit");
let num = rand::thread_rng().gen_range(0..100);
print!("The amount of bee's you get: ");
print!("The amount of bees you get: ");
println!("{}", num);
}