Kotlin - Data Types
What will be the output of the following Kotlin code?
fun printMessage(): Unit {
println("Hello, Kotlin!")
}
fun main() {
val result = printMessage()
println(result)
}