let mut sum: i32 = 0;get_sum(&mut sum, 5, 3);//sum is 8println!("sum is {sum}");fn get_sum(sum: &mut i32, n1: i32, n2: i32) { *sum = n1 + n2;}