Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/exitProcess.kt
T

15 lines
273 B
Kotlin
Vendored

import java.io.File
import kotlin.system.exitProcess
object Main {
private val KOTLIN_HOME: File
init {
val home = System.getProperty("kotlin.home")
if (home == null) {
exitProcess(1)
}
KOTLIN_HOME = File(home)
}
}