Kotlin - Variables and Type System
Identify the error in the following Kotlin code:
const val greeting = "Hello"
fun main() {
greeting = "Hi"
println(greeting)
}