April 28, 2025
Kotlin Notebook is a new interactive environment for JVM developers. This article will cover the main Notebook features and how you can utilize them to improve your productivity. How to use Kotlin Notebook Kotlin Notebook is bundled with IntelliJ IDEA starting from the 2025.1 release, and it is easier than ever to start working with […]
April 17, 2025
JetBrains AI is now a lot more useful for Kotlin developers. With the public release of Junie and a major update to AI Assistant, two powerful AI tools are now deeply integrated with JetBrains IDEs – and ready to help you move faster with less overhead. Whether you’re starting a new feature or cleaning up […]
April 16, 2025
We’re almost there – KotlinConf’25, the major Kotlin event of the year, is coming up soon! This time, it’s bigger, bolder, and packed with even more insights. Hear from Spring creator Rod Johnson, dive into a case study from Duolingo’s team, and discover how Kotlin Multiplatform powers navigation in the McDonald’s app. From not-to-miss sessions […]
April 16, 2025
Starting with version 2025.1, Kotlin Notebook will be integrated into IntelliJ IDEA Ultimate out of the box, without the need to install the plugin! Kotlin Notebook is a new interactive environment for JVM developers. The code in the notebooks can even call and use parts of your project codebase, allowing you to experiment with it […]
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") } }