이러한 반환은 중복이며 안전하게 생략할 수 있습니다.
예:
fun foo() { listOf(1,2,3).find { return@find true } }
빠른 수정 적용 후:
fun foo() { listOf(1,2,3).find { true } }