1 min readApr 15, 2020
One the things about Java I always liked were that checked exceptions were very clear, which is very important for large projects. Kotlin strangely does away with what I consider a key feature of Java.
Kotlin’s extension functions are cool though — but it’s syntactic sugar whether I want to call str.print() or print(str).