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 +1,11 @@
// Solutions will be available before the stable release. Thank you for testing the beta version 🥰
fn main() {
// An array with 100 elements of the value 42.
let a = [42; 100];
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");
}
}