10 lines
144 B
Plaintext
10 lines
144 B
Plaintext
fun foo() {
|
|
val a = true
|
|
val b = false
|
|
val c = true
|
|
if (a) {
|
|
if (b && c) {
|
|
println("test")
|
|
}
|
|
}
|
|
} |