stdlib: Add exitProcess function

This commit is contained in:
Ilya Matveev
2017-09-01 19:55:31 +07:00
committed by ilmat192
parent bacb1c21f7
commit ea667ebc5c
4 changed files with 25 additions and 0 deletions
@@ -0,0 +1,5 @@
import kotlin.system.*
fun main(args: Array<String>) {
exitProcess(42)
}