fun main(args: Array) { val hello = "hello" //value can not be reinitialized because it is like final variable in java hello = "dlkjf" // it will produce an compile time error println("$hello") } ###output### hello