6 lines
190 B
Kotlin
Vendored
6 lines
190 B
Kotlin
Vendored
@CompileTimeCalculation
|
|
fun getLenght(value: String?): Int = value?.length ?: -1
|
|
|
|
const val a1 = <!EVALUATED: `5`!>getLenght("Elvis")<!>
|
|
const val a2 = <!EVALUATED: `-1`!>getLenght(null)<!>
|