Kotlin - Data Types
Consider this Kotlin code:
What will be printed?
fun process(): Unit {
println("Start")
return Unit
}
fun main() {
val result = process()
println(result)
}What will be printed?
