Which of course doesn’t stop me: ``` fun main(argv...
# kobalt
c
Which of course doesn’t stop me:
Copy code
fun main(argv: Array<String>) {
    val result = mainNoExit(argv)
    if (result != 0) {
        System.exit(result)
    }
}