@voddan commented on
@thomasnield’s file
https://kotlinlang.slack.com/files/U0HUJ25V1/F5R0E9XDZ/Untitled.txt: My 2 cents:
- I would use Maven for explanations since it is way easier to understand and use (because of IJ integration)
- Put nullable types further down till you need them for Java interop. Kotlin without null types works just fine
- I've seen many uses of
sealed
classes, so you might want to mention them, especially considering they serve a role of advanced enums in languages like Swift