Kotlin – Strings
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 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…
In this Guide we will discuss about basic syntax of Kotlin. Kotlin Program Entry Point An entry point of a Kotlin application is the main() function. A function can be defined as…
In this guide we will discuss about Architecture of Kotlin. Kotlin is a programming language and has its own architecture to allocate memory and produce a quality output to the…
In this guide we will discuss about environment setup of Kotlin. However, if you still want to use Kotlin offline in your local system, then you need to execute the…