primitive_types3 solution

This commit is contained in:
mo8it
2024-06-08 21:43:38 +02:00
parent e1051724c3
commit 0338b1cbdf
3 changed files with 15 additions and 6 deletions
@@ -1,12 +1,11 @@
// Create an array with at least 100 elements in it where the ??? is.
fn main() {
let a = ???
// TODO: Create an array with at least 100 elements in it where the ??? is.
// let a = ???
if a.len() >= 100 {
println!("Wow, that's a big array!");
} else {
println!("Meh, I eat arrays like that for breakfast.");
panic!("Array not big enough, more elements needed")
panic!("Array not big enough, more elements needed");
}
}