I thought Kotlin keywords are soft keywords and co...
# getting-started
p
I thought Kotlin keywords are soft keywords and context-specific?
Copy code
data class MyDataClass(
    val package: String, // error
    val hello: String
)
m
b
you can escape with backtick: val `package`: String = "hello"