Omit parameter labels

func findDiff(\_ a: Int, b: Int) -> Int {
  return a -b
}
print(findDiff(6, b: 4)) // prints: 2
Comments