5550924dc5
Inverts the conditional expression in an if expression.
9 lines
86 B
Kotlin
Vendored
9 lines
86 B
Kotlin
Vendored
fun foo(): Boolean {
|
|
return true
|
|
}
|
|
|
|
fun main() {
|
|
<caret>if (!foo()) {
|
|
|
|
}
|
|
} |