Menu
Coddy logo textTech

The Language

Part of the Fundamentals section of Coddy's Kotlin journey. Lesson 1 of 93.

Kotlin is a modern, expressive programming language developed by JetBrains. It runs on the Java Virtual Machine (JVM) and is the preferred language for Android app development.

challenge icon

Challenge

Beginner

Welcome to your first Kotlin program! The code is already written for you.

What to do:

  1. Look at the code: println("Hello Kotlin!")
  2. Press the "Run Code" button to execute it
  3. You should see "Hello Kotlin!" appear in the output

Try it yourself

fun main() {
    println("Hello Kotlin!")
}
quiz iconTest yourself

This lesson includes a short quiz. Start the lesson to answer it and track your progress.

All lessons in Fundamentals

Practice on your own: Kotlin playground