how to print hello world in kotlin code example
Example 1: how to write hello world in kotlin
fun main() {
println("Hello World!")
}
Example 2: hello world in kotlin
// Hello World Program in Kotlin
fun main(args : Array<String>) {
println("Hello, World!")
}