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