Published on [Permalink]
Posted in:

Hello Kotlin

In Kotlin, the entry point to your program is the main function. You can easily create a Hello World program like so:

fun main() {
  println("Hello, world!")
}