5 lines
69 B
Plaintext
5 lines
69 B
Plaintext
fun main(args: Array<String>){
|
|
val x = "abc"
|
|
val y = "d$x"
|
|
}
|