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