jw
inline fun <T> tryy(body: () -> T): T? = try { body() } catch (e: Exception) { null }
val result = tryy { someOpThatCanError() }