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