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