Atul Gupta
detekt
fun test(foo: Int): Int { if (foo > 0) { return 0 } else { return 1 } }
fun test(foo: Int): Int { return if (foo > 0) { 0 } else { 1 } }
when
Brais Gabin
schalkms
A modern programming language that makes developers happier.