Swift - Functions
What will be the output of the following Swift code?
func greet() {
func sayHello() {
print("Hello")
}
sayHello()
}
greet()