

February 29, 2024
Compose Multiplatform is a declarative UI framework built by JetBrains that allows developers to share UI implementations across different platforms. The 1.6.0 release brings several powerful features, as well as compatibility with the latest Kotlin version and changes from Google’s latest Jetpack Compose update. Get Started with Compose Multiplatform This release of Compose Multiplatform: For […]

February 27, 2024
The Kotlin Foundation has been accepted as a mentor organization for Google Summer of Code 2024! GSoC is a global online program focused on bringing new contributors into open-source software development. Contributors work on a 12-week programming project under the guidance of Kotlin Foundation mentors from Google, Gradle, and JetBrains. What does this mean for […]

February 12, 2024
Amper is an experimental project configuration tool by JetBrains. With the 0.2.0 release and its accompanying tooling, we have some exciting feature updates and highlights to share. Amper now supports Gradle version catalogs, completion for adding new dependencies, and more! Read on for more details. Gradle version catalogs To make it easier to add Amper […]

February 2, 2024
A big thank you goes out to everyone who joined us for Advent of Code in Kotlin last year! We’re thrilled that JetBrains was a part of this yearly tradition once again as one of the Advent of Code sponsors. From December 1 through 12, we shared daily livestreams of puzzle solutions presented by our […]
fun main() {
val name = "stranger" // Declare your first variable
println("Hi, $name!") // ...and use it!
print("Current count:")
for (i in 0..10) { // Loop over a range from 0 to 10
print(" $i")
}
}
