Swift - Functions
Find the error in this Swift function:
func printNumbers(_ nums: Int..., extra: Int) {
for n in nums {
print(n)
}
print(extra)
}