Programming languages
Kotlin
A modern, statically typed programming language that is fully interoperable with Java and Android for building mobile applications, server-side applications, and more.
Share this starting point
code.study/kotlin
- Created by
- JetBrains
- First appeared
- 2011
- Official resource
- Visit the main website
Your first program
Hello, World!
fun main() {
println("Hello, World!")
}