//TIP To Run code, press or // click the icon in the gutter. fun main() { val name = "Kotlin" //TIP Press with your caret at the highlighted text // to see how IntelliJ IDEA suggests fixing it. println("Hello, " + name + "!") for (i in 1..5) { //TIP Press to start debugging your code. We have set one breakpoint // for you, but you can always add more by pressing . println("i = $i") } }