mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-05-10 02:37:32 -05:00
12 lines
273 B
Rust
12 lines
273 B
Rust
use rand::Rng;
|
|
|
|
fn main() {
|
|
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!("The amount of bees you get: ");
|
|
println!("{}", num);
|
|
|
|
}
|