rwachol
11/11/2015, 5:43 PMkotlinc-jvm HelloWorld.kt -d hello.jar
but now I want to launch it with java like
java -cp hello.jar:kotlin-runtime.jar HelloWorld
but it gives an error (Error: Could not find or load main class HelloWorld)
here is my HelloWorld.kt
fun main(args : Array<String>) {
println("Hello, world!")
}
What is the output class for kotlinc-jvm in my case?