Hello, I wanted to compile with command line so I ...
# build-tools
r
Hello, I wanted to compile with command line so I invoked
kotlinc-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
Copy code
fun main(args : Array<String>) { 
	  println("Hello, world!") 
  }
What is the output class for kotlinc-jvm in my case?