Where in the file system is the Kotlin runtime use...
# intellij
i
Where in the file system is the Kotlin runtime used by IntelliJ (can't find it in the preferences)? Edit: Probably should download the standalone runtime https://kotlinlang.org/docs/tutorials/command-line.html
a
If you use a pure Intellij project (no maven, gradle), open Project structure dialog and looks at the dependencies of your modules. You will see something like
KotlinJavaRuntime
. You can edit it to see the contained jar file paths.
i
Thank you!