1 2 3 4 5 6 7 8 9
fn main() { println!("Hello, world!"); let n = 3; dbg!(a(n)); } fn a(n: i32) -> i32 { n }