Swift - Functions
What will be the output of this Swift code?
func multiplyByTwo(_ number: Int) -> Int {
return number * 2
}
let operation = multiplyByTwo
print(operation(5))