This is a simple function in Kotlin (using intellij IDEA)
fun main() {
println("HEllo World")
}
I expect print message but get nothing. What should I do?
Kotlin version: 1:10
This is a simple function in Kotlin (using intellij IDEA)
fun main() {
println("HEllo World")
}
I expect print message but get nothing. What should I do?
Kotlin version: 1:10
Try something like this
fun main(args: Array<String>) {
println("HEllo World")
}