February 11, 2025
A couple of years ago, we initiated the idea of creating a Kotlin Multiplatform IDE to help facilitate the development of KMP applications. We embarked on this venture, building on the Fleet platform, with the intention of releasing it as a standalone IDE. During this time, we have received feedback from our customers, specifically those […]
February 7, 2025
Hello, it’s Kodee! Missed me? I hope you had a fantastic break because it’s time for a new edition of Kodee’s Kotlin Roundup! I’ve got some exciting news from the past couple of months just for you. Kotlin YouTube spotlight Did you know there’s a Kotlin YouTube channel packed with awesome content? It’s been buzzing […]
February 5, 2025
Thank you to everyone who participated in Advent of Code 2024 in Kotlin! It was great to see so many of you sharing solutions to algorithmic puzzles and enjoying the holiday coding spirit with experts and the community. From December 1–12, we hosted livestreams with Kotlin Developer Advocate Sebastian Aigner and fantastic guests who shared […]
January 27, 2025
More and more developers are using Kotlin for server-side development, building reliable and efficient backend systems. Many of them also share their experiences through articles, videos, and sample projects. If you’re one of these creators, we want to recognize your work! Sharing your knowledge helps others solve real problems, improve their skills, and discover better […]
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") } }