函数

let sum = get_sum(53);
//sum is 8

println!("sum is {sum}");

fn get_sum(n1: i32, n2: i32) -> i32 {
    n1 + n2
}