🎉 fn is_the_answer(age: u32) -> bool { //The answer to the ultimate question of life age == 42 } fn main() { let name = "Francesco"; let my_age = 42; if is_the_answer(my_age) { println!("Happy Birthday,{}! Big announcement later 👀", name); } }
3K