mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
7 lines
130 B
Plaintext
Vendored
7 lines
130 B
Plaintext
Vendored
fun foo(a: Int): String {
|
|
val s = "cd"
|
|
val x = "x$s$a"
|
|
val y = "${a}${s}x"
|
|
val z = "xcf$a"
|
|
return "ab${s}ef"
|
|
} |