6 lines
88 B
Plaintext
6 lines
88 B
Plaintext
fun main(args: Array<String>){
|
|
val a = "abc"
|
|
val b = "bcd"
|
|
val x = "$a$b"
|
|
}
|