Kotlin - Functions
Identify the error in this Kotlin function declaration:
fun greet(name: String = "User", age: Int) {
println("Hello, $name! You are $age years old.")
}