Kotlin - Functions
What will be the output of the following Kotlin code?
fun describePerson(name: String, age: Int = 30) {
println("Name: $name, Age: $age")
}
describePerson(age = 22, name = "John")