

August 8, 2024
Welcome to this special edition of Kotlin Roundup, where we shine the spotlight on Ktor, our framework for building asynchronous servers and clients in connected systems! This issue is packed with the latest updates, insightful news, and exciting developments in the Ktor ecosystem, appealing to everyone from seasoned Ktor enthusiasts to those just getting started. […]

August 8, 2024
The latest release of Amper, version 0.4.0, is now available! In this release, we’re introducing a clear definition for the project root and providing a first look at settings tracing in Amper, alongside bug fixes and other improvements. To get support for Amper’s latest features, use Fleet 1.38 and IntelliJ IDEA 2024.2 (or later versions). […]

July 31, 2024
The countdown to KotlinConf 2025 has officially begun, and we’re excited to announce that tickets are now on sale for this premier event, which will take place from May 21–23, 2025, in Copenhagen, Denmark! Organized by JetBrains, this is the largest Kotlin event in the world. Starting today, you can secure your spot at KotlinConf […]

July 9, 2024
Introduction The Kotlin DataFrame library makes extracting values from structured data an easy task. As discussed in our documentation, there are four separate APIs that can be used for this purpose, with the optimal choice depending on your individual situation and requirements. To demonstrate, let’s read in a JSON document containing information about users: The […]
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")
}
}
