Hacker News new | ask | show | jobs
by iamcreasy 3323 days ago
Can you elaborate on how Kotlin maintain compatibility with Java?
1 comments

Kotlin can just import and use any Java class. Kotlin doesn't introduce new strings or collections, so conversions of any kind are not required. Also Kotlin compiles to Java classes which can be used from Java without any problems too.
So, Kotlin and Java are fully inter-operable without any feature loss?