Closures with multiple parameters in Swift

let avgFunc = { (a, b) in (a + b) / 2 }
let avg = avgFunc(35)
//avg is 4