mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 08:31:31 +00:00
13 lines
173 B
Kotlin
Vendored
13 lines
173 B
Kotlin
Vendored
fun die(message: String) {
|
|
System.err.println(message)
|
|
System.exit(1)
|
|
}
|
|
|
|
if (args.length == 0) {
|
|
die("Need arguments")
|
|
}
|
|
|
|
for (arg in args) {
|
|
println(arg)
|
|
}
|