6 lines
92 B
Plaintext
6 lines
92 B
Plaintext
fun main(args: Array<String>){
|
|
val x = "abc"
|
|
val y = "cde"
|
|
val z = "$y$x.bar"
|
|
}
|