Basics of Kotlin
Reading Time: 2 minutes Hello everyone today I will discuss the basics of kotlin for example Hello world program, variables, functions, if and when, functions. So let’s do some practice and also important some theory. Hello World package intro fun main() { // from kotlin 1.3 program arguments are optional val name = “kotlin” // val for final variable println(“Hello, $name!!!!”) } Things to be noticed if we compare Continue Reading