guys any comments on code quality and style? Am I ...
# announcements
w
guys any comments on code quality and style? Am I using any kotlin features in a way not recommended?
a
Copy code
val index = bulk?.component1(); val lowest = bulk?.component2() ?: break
always put separate statements on newlines. dont place them on same line
1
w
got it. I guess it was a vain attempt at conciseness 😛
a
sometimes conciseness can sacrifice readability. remove noise but preserve readability 🙂