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