variable kotlin code example
Example 1: kotlin variable
val name = ”Marcin”
var age = 5
age++
Example 2: how to define variable in kotlin
val firstName: String = "Chike"
val variable name: Typeofthevariable = TheValueofyourvariable
Example 3: return type in kotlin function
fun sum(a: Int, b: Int): Int {
return a + b
}
Example 4: kotlin var and val
val declares a read-only property, var a mutable one
Example 5: var and val in kotlin
val and var both are used to declare a variable. var is like general variable and it's known as a mutable variable in kotlin and can be assigned multiple times. val is like Final variable and it's known as immutable in kotlin and can be initialized only single time.