7 lines
86 B
Plaintext
7 lines
86 B
Plaintext
fun main(): Boolean {
|
|
if (20 != 5) {
|
|
return false
|
|
}
|
|
return true
|
|
}
|