Kotlin Basics – Kotlin Variables
There are two types of variables – mutable and immutable. An immutable variable is one whose value cannot be changed, also known as unchangeable or read-only variable. On the other hand the value of the mutable variable can be changed. Immutable variable: val keyword Immutable… Read More »Kotlin Basics – Kotlin Variables