Setup
For Android, install Android Studio — it bundles everything. To learn the language alone, the Kotlin compiler runs anywhere Java does, or use play.kotlinlang.org with zero install.
Lessons
1
Hello, Kotlin
Kotlin's pitch in one file: everything Java does, in half the lines. main doesn'…
→
2
Null Safety
The billion-dollar mistake, fixed in the type system. In Kotlin, String and Stri…
→
3
Functions, when & Expressions
In Kotlin, if and when produce values. Combined with expression-body functions, …
→
4
Classes & Data Classes
A Java class with getters, setters, equals, hashCode, and toString is ~50 lines.…
→
5
Collections & Lambdas
filter, map, sumOf, groupBy — Kotlin's collection pipeline turns loop-heavy code…
→
6
Coroutines — async Made Simple
Fetch from the network without freezing the UI — the core problem of app develop…
→
7
Your First Android Screen
Modern Android UI is Jetpack Compose: describe the screen as Kotlin functions, a…
→
8
Kotlin Cheatsheet
Null safety, data classes, collections, and coroutines on one page.
→