Kotlin cannot read the, with Autohotkey generated, return file
Within Kotlin I generate Autohotkey scripts and call them also within Kotlin via the command line.
The Autohotkeys Scripts always generate then a return file which then reads Kotlin again.
This works with the first two but not with the third (funcName = run_Gi_IntelliSenseEverywhere).
fun main(args: Array) {
if (!isWritingToOutputFilePossible()) {
throw Exception(":( isWritingToOutputFilePossible failed")
}
if (!openNotepad())...