Kotlin Program Hello World


In this program, You will learn how to create a program Hello World in Kotlin.


Hello World

Example: How to create a Hello World program in Kotlin.

fun main(args: Array<String>) {
    println("Hello World in Kotlin")
}

Output:

Hello World in Kotlin