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