why is kotlin called kotlin code example
Example 1: Kotlin is like java
val label = "The width is "
val width = 94
val widthLabel = label + width
// The width is 94
Example 2: Kotlin is like java
const val SYSTEM_DEPRECATED: String = "System is deprecated"