fn five() -> i32 { 5 } fn main() { let x = five(); println!("The value of x is: {x}"); } The value of x is: 5