March 18, 2025
If you’re using Kotlin for server-side development and sharing your experiences – whether through blog posts, videos, or sample projects – know that we see you, and we want to highlight your work! Recent picks from the community 📖 [Article] From Java to Kotlin — a practical example of how to convert code – Paul […]
February 28, 2025
The Kotlin Foundation is once again participating in Google Summer of Code (GSoC), offering contributors an opportunity to work on open-source projects that shape the Kotlin ecosystem. This year, the program is expanding to include even more projects from Kotlin Foundation member companies like JetBrains, Google, Uber, and Gradle, providing contributors with mentorship from some […]
February 17, 2025
AI models are evolving fast, and DeepSeek-R1 is making waves as a serious competitor to OpenAI. But how well do these models understand Kotlin? Can they generate reliable code, explain tricky concepts, and help with debugging? JetBrains Research tested the latest AI models, including DeepSeek-R1, OpenAI o1, and OpenAI o3-mini, using KotlinHumanEval and a new […]
February 13, 2025
Ktor 3.1.0 is here! This is the first minor release of the year, bringing exciting new features, performance improvements, and bug fixes. This release includes improvements to server-sent events (SSE), documentation enhancements, WebAssembly (Wasm) support, dependency injection design updates, and some initial steps toward gRPC integration. 🚀 Get started with Ktor 3.1.0 now! Ready to […]
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") } }