I am brand new to kotlin. I have installed kotlin plugins to eclipse. I found the simple example posted below in one of the tutorials. The issue is, when I run the project i receive the below stated error.
To solve this issue I tried to run the project as kotlin application, but I could not find that option at all.
please let let me know how to fix this error?
code:
fun main(args : Array) {
println("Hello, World!")
}
error:
Error: Could not find or load main class com.example.Main
update:
to solve this issue I followed exactly what is in this tutorial and I installed the most recent version of eclipse PHOTON but still the problem is there.
if your main function is a top level function (not wrapped in a class or object)
then the generated class will be FIlenameKt, or for your case
MainKt
assuming it is inMain.kt