The error E0061 occurs because you called a function with the wrong number of arguments. Check the function definition to see how many parameters it expects, then update your function call to match that count exactly.
fn add(a: i32, b: i32) -> i32 {
a + b
}
fn main() {
// Correct: 2 arguments match the 2 parameters
let result = add(1, 2);
// Incorrect: E0061 - 1 argument supplied, 2 expected
// let result = add(1);
}