7 lines
178 B
Kotlin
7 lines
178 B
Kotlin
import kotlin.system.*
|
|
|
|
fun main(args: Array<String>) {
|
|
exitProcess(42)
|
|
@Suppress("UNREACHABLE_CODE")
|
|
throw RuntimeException("Exit function call returned normally")
|
|
} |