Kotlin
Kotlin is a general-purpose development language used mainly for Android mobile app development.
Besides Android apps, Kotlin is also useful for the following:
- Server-side development
- Front-end development
- Multi-platform mobile development
- Data science
- Official website
- https://kotlinlang.org/
- Documentation
- https://kotlinlang.org/docs/home.html
- Start learning
- Learn
- Kotlin Codelab
- Online IDE
- Exercises
- https://kotlinlang.org/docs/koans.html
- More resources
// starter code // Main.kt fun main(){ println("Hello World") }