3d8d92c7d3
- test data files renamed from *.jet to *.kt
9 lines
213 B
Kotlin
9 lines
213 B
Kotlin
fun set(<!UNUSED_PARAMETER!>key<!> : String, <!UNUSED_PARAMETER!>value<!> : String) {
|
|
val a : String? = ""
|
|
when (a) {
|
|
"" -> a.get(0)
|
|
is String, is Any -> a.compareTo("")
|
|
else -> a.toString()
|
|
}
|
|
}
|