Kotlin - Functions
What will be the output of the following Kotlin code?
fun greet() {
val prefix = "Hello"
fun sayName(name: String) {
println("$prefix, $name!")
}
sayName("Alice")
}
fun main() {
greet()
}