Files
kotlin-fork/backend.native/tests/codegen/basics/concatenation.kt
T
2017-10-20 18:25:05 +03:00

14 lines
227 B
Kotlin

package codegen.basics.concatenation
import kotlin.test.*
@Test
fun runTest() {
val s = "world"
val i = 1
println("Hello $s $i ${2*i}")
for (item in listOf("a", "b")) {
println("Hello, $item")
}
}