Compare commits

..

No commits in common. "18800b55dfa4533f9fcbacebd27f97b82c99bb7c" and "d8904caf5983206c8bcbbd02281b0864510576cc" have entirely different histories.

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);
}