Kotlin Program to print Hello World

This is a simple Kotlin program that prints "Hello, World!!!!" string on the console or terminal.

Program

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

Output

$ kotlinc hello-world.kt -include-runtime -d hello-world.jar
Hello, World!!!!