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 […]
January 22, 2025
2024 marked another exciting year with respect to the Kotlin Foundation’s participation in Google Summer of Code (GSoC). GSoC is a global online program that introduces new contributors to open-source development. This year, contributors worked to expand the Kotlin ecosystem under the guidance of mentors from Google, Gradle, Microsoft, and JetBrains. Join our Slack channel […]
December 17, 2024
Kotlin Multiplatform is growing rapidly, with its ecosystem expanding and the number of libraries increasing by 35% in 2024 alone. However, with more libraries available than ever, finding the right one for your use case and target platforms can still be a challenge. Whether you’re looking for a solution to handle permissions on iOS and […]
December 12, 2024
KotlinConf workshops provide engineers with an opportunity to deepen their Kotlin programming skills. These hands-on sessions focus on real-world projects and solutions, guided by hosts who are either members of the JetBrains Kotlin development team or certified Kotlin trainers. These workshops will take place on May 21, 2025, in Copenhagen, and will cater to various […]
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") } }