I am trying to get familiar with Kotlin to use in my android apps. So first I want to try out some simple kotlin examples, just to get familiar with syntax of kotlin.
class Main { companion object { @JvmStatic fun main(args: Array) { println("Hello!") } }
or Just create a configuration with the main class as "MainKt".