which one do you prefer in kotlin: ``` return try...
# announcements
t
which one do you prefer in kotlin:
Copy code
return try {
    true
} catch(..) {
    false
}
vs
Copy code
try {
    return true
} catch(..) {
    return false
}
1️⃣ 5