primitive_types1 solution

This commit is contained in:
mo8it
2024-05-25 16:31:21 +02:00
parent 8d4145038d
commit 990c68efcb
3 changed files with 18 additions and 7 deletions
@@ -1 +1,11 @@
// Solutions will be available before the stable release. Thank you for testing the beta version 🥰
fn main() {
let is_morning = true;
if is_morning {
println!("Good morning!");
}
let is_evening = !is_morning;
if is_evening {
println!("Good evening!");
}
}