2 functions: ``` fun sayHello(name: String) { ...
# announcements
j
2 functions:
Copy code
fun sayHello(name: String) {
    sayHelloMan(name)
}
fun sayHelloMan(namePrefix: String) {
    print("Hello ${namePrefix}Man")
}
d
that means, language does not support uses of default values, thank you