blob: 225a7f05cf26d350f16a3270a5b0459cc2b0b428 [file] [log] [blame]
fun findUserId(username: String): Long? = null
fun main(args: Array<String>) {
val userId = findUserId("abcd")
when (userId) {
null -> println("User not found")
else -> println("User ID: $userId")
}
}
// 0 areEqual