Kotlin – Functions
In this guide we will discuss about Functions in Kotlin. Kotlin is a statically typed language, hence, functions play a great role in it. We are pretty familiar with function,…
In this guide we will discuss about Functions in Kotlin. Kotlin is a statically typed language, hence, functions play a great role in it. We are pretty familiar with function,…
Kotlin ranges is defined by its two endpoint values which are both included in the range. Kotlin ranges are created with rangeTo() function, or simply using downTo or (. .) operators. The main operation on ranges is contains, which…
In this guide we will learn about Arrays in Kotlin. Arrays are used to store multiple items of the same data-type in a single variable, such as an integer or…
In this guide we will discuss about Strings in Kotlin. The Kotlin String data type is used to store a sequence of characters. String values must be surrounded by double quotes ("…
In this guide we will learn about Booleans in Kotlin. Many times we come across a situation where we need to take decision in Yes or No, or may be we can say True or False.…
In this guide we will discuss about operators in Kotlin. An operator is a symbol that tells the compiler to perform specific mathematical or logical manipulations. Kotlin is rich in…
In this guide we will discuss about data types in Kotlin. Kotlin data type is a classification of data which tells the compiler how the programmer intends to use the…
In this guide we will discuss about variables in Kotlin. Variables are an important part of any programming. They are the names you give to computer memory locations which are…
Kotlin keywords are predefined, reserved words used in Kotlin programming that have special meanings to the compiler. These words cannot be used as an identifier (variables names, package names, function…
In this guide we will discuss about comments in Kotlin. A comment is a programmer-readable explanation or annotation in the Kotlin source code. They are added with the purpose of…