You can’t assemble the project cause main method is not static. So you should define it in companion object.
class HelloKotlin {
companion object {
@JvmStatic fun main(args: Array<String>) {
println("Kotlin main is running here!")
}
}
}