Compare commits

..

1 Commits

Author SHA1 Message Date
Literally A Penguin
9c4922aacc
Merge d8904caf5983206c8bcbbd02281b0864510576cc into e58d83b4a841f37649ca28070313a7b00160b480 2024-09-25 15:43:59 -05:00
2 changed files with 0 additions and 18 deletions

View File

@ -1,7 +0,0 @@
[package]
name = "random"
version = "0.1.0"
edition = "2021"
[dependencies]
rand = "0.8"

View File

@ -1,11 +0,0 @@
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);
}