5 lines
97 B
Kotlin
5 lines
97 B
Kotlin
fun main(args : Array<String>) {
|
|
for (name in args)
|
|
System.out?.println("Hello, $name!")
|
|
}
|