This is the fourth part of the video series on Kotlin language. Read the first, second and third parts here. In this post, let’s discuss String. String is an immutable type in Kotlin. fun main(args:Array<String>){ var lang = "Java" println(lang) […]
This is the third part of the video series on Kotlin language. Read the first and second parts here. In this post, let’s take a look at the data types in Kotlin language. Kotlin is a strongly typed language. In […]
This is the second part of the video series on Kotlin language. Read the first part here. In this post, let’s discuss how to declare variables in the language. You can declare variables using var keyword as shown below. fun […]
Kotlin is the new programming language by JetBrains. It can be compiled to Java and JavaScript. Kotlin is slowly making its mark in the Android development territory. I have started creating short 2-3 minutes code-based videos on Kotlin language. Here’s […]
Read the full article on DuraSoft, here: http://durasoftindia.com/blogposts/kotlin_null_safety_1.html I was recently solving a programming problem listed in Advent of Code, using Kotlin programming language. After I finished the task, my friend glanced at the code and quipped, “Is question mark […]