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