Kotlin - Basics and JVM Runtime
What will be the output of this Kotlin code?
fun main() {
val greeting = "Hello"
val name = "Anna"
println("$greeting, $name!")
}