We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test:
fun zap(s: String) = s inline fun tryZap(s1: String, s2: String, fn: (String, String) -> String) = fn( try { zap(s1) } catch (e: Exception) { "" }, try { zap(s2) } catch (e: Exception) { "" } ) fun box(): String = tryZap("O", "K") { a, b -> a + b }
Possible fix: Here
The text was updated successfully, but these errors were encountered:
lehvolk
No branches or pull requests
Test:
Possible fix:
Here
The text was updated successfully, but these errors were encountered: