Kotlin native finished with non-zero exit value 3

51 Views Asked by At

I'm follow a kotlin native tutorial https://book.kotlincn.net/text/native-get-started.html The code:

fun main() {
    val name = readln()
    name.replace(" ","").let {
        println("your name length is ${it.length}")
    }
}

When I run this,it outputs: Process 'command 'E:\codes\ktNative\build\bin\native\debugExecutable\ktNative.exe'' finished with non-zero exit value 3

If I don't use the function readln like this:

fun main() {
    val name = "AAA  BBB CCC"
    name.replace(" ","").let {
        println("your name length is ${it.length}")
    }
}

Now it can run and output normally.

I want to know how to run normally with using the function readln. I'm using Window10 x64 pro, IDEA2023, kotlin1.9.0, openjdk17.

0

There are 0 best solutions below