kotlin declare variable in class code example
Example 1: kotlin variable
val name = ”Marcin” // Can't be changed
var age = 5 // Can be changed
age++
Example 2: how to define variable in kotlin
val firstName: String = "Chike"
val variable name: Typeofthevariable = TheValueofyourvariable