Hello Guys, we already knew that Google announced Kotlin is a new first class language for Android Development. So, we started the Kotlin series for learning Kotlin for android. We have seen the "Hello World" Program for Android in our previous post. You can download Intellij idea Commuinty Edition or use Kotlin Online Compiler provided by Intellij In this post, we will learn the basics of kotlin. 1. Hello World The Following Snippet shows the Hello world Program and is similar to Java. fun main(args: Array <string>) { println("Hello, world!") } 2. Variables and Constants The Following Snippet shows the How to use Variables and Constants with Datatype in Kotlin. Variables can be re-assigned // Variable - Values Can be reassigned var a = 10 a = a + 10 println(a) Constants cannot be re-assigned and if we did will error as "val cannot be reassigned" // Constants - Values cannot reassigned val x = 10 println(x) We can specify the Data types for...