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