mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
14 lines
160 B
Kotlin
14 lines
160 B
Kotlin
fun main() {
|
|
f(null)
|
|
f(true)
|
|
f(false)
|
|
}
|
|
|
|
fun f(x: Boolean?) {
|
|
if(x == true) {
|
|
println("Yes")
|
|
} else {
|
|
println("No")
|
|
}
|
|
}
|