All Kotlin programs start at the main function. Here is an example of a simple Kotlin "Hello World" program:
package my.program
fun main(args: Array<String>) {
println("Hello, world!")
}
Place the above code into a file named Main.kt (this filename is entirel...