8 lines
95 B
Kotlin
Vendored
8 lines
95 B
Kotlin
Vendored
package hello
|
|
|
|
fun main() {
|
|
for (s in listOf("a")) {
|
|
println("Hello, $s!")
|
|
}
|
|
}
|