Swift - Functions
What will be the output of this Swift code?
func add(_ a: Int, _ b: Int) -> Int { return a + b }
let operation = add
print(operation(3, 4))