Basic featureset

This commit is contained in:
Nox Sluijtman 2024-03-21 11:35:32 +01:00
parent 8ab08d7c49
commit a6b357bfef

View file

@ -1,3 +1,14 @@
use rand::Rng;
fn main() {
println!("Hello, world!");
let foods = [ "Kapsalon"
, "Pizza"
, "Lasagne"
, "Nachos"
, "Friet"
, "Durum"
];
let secret_num = rand::thread_rng().gen_range(0..foods.len());
println!("{}", foods[secret_num])
}