TEST: yet another string concatenation test
This commit is contained in:
committed by
vvlevchenko
parent
68e324c207
commit
282f4fee07
@@ -0,0 +1,10 @@
|
||||
fun main(args: Array<String>) {
|
||||
val s = "world"
|
||||
val i = 1
|
||||
println("Hello $s $i ${2*i}")
|
||||
|
||||
for (item in listOf("a", "b")) {
|
||||
println("Hello, $item")
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user