Update main.rs

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

View File

@ -1,9 +1,11 @@
use rand::Rng;
fn main() {
println!("Cock needs boing boing?");
println!("How many bees will you get?");
println!("Guess your answer");
println!("That was wrong, dipshit");
let num = rand::thread_rng().gen_range(0..100);
print!("number");
print!("The amount of bee's you get: ");
println!("{}", num);
}