Kotlin

Kotlin break

In this tutorial, you will learn to use break to terminate a loop. Also, you will learn about break labels. Kotlin break example The break is a loop control statement which is used to terminate the loop. Basically break statements are used in the situations when we are not sure about the actual number of […]

Kotlin break Read More »

Kotlin for Loop

The for loop in Kotlin iterates through anything that provides an iterator. In this article, you learn to create for loop (with the help of examples). Syntax The syntax of for loop in Kotlin is: for (item in collection) { // body of loop } In Kotlin, for loop is used to iterate through the following because all

Kotlin for Loop Read More »

Kotlin do-while Loop

In this article, you will learn about the do-while loop and how to create do-while loop in Kotlin programming. Loops in Kotlin are used when we want to execute a block of statements repeatedly until a specific condition is met(condition is false). Kotlin do-while Loop Kotlin’s do-while loop is an exit-control loop, which means unlike while loop, the do-while

Kotlin do-while Loop Read More »

Kotlin while Loop

In this article, you will learn about while loop and how to create while loop in Kotlin programming. Loops in Kotlin are used when we want to execute a block of statements repeatedly until a specific condition is met(condition is false). Kotlin While Loop The while loop executes the block of code as long as a specified

Kotlin while Loop Read More »

Kotlin when Expression

In this article, you will learn about when expression in Kotlin with the help of various examples. In Kotlin, when replaces the switch operator of other languages like Java, C, C++, etc. when matches its argument against all branches sequentially until some branch condition is satisfied. After the first match found, it reaches to end of the

Kotlin when Expression Read More »

Kotlin if Expression

In this article, you will learn to use if expression in Kotlin with the help of examples. There are different types of if expression in Kotlin: if-else expression if-else-if ladder expression nested if expression Traditional if Statement if statement The if statement checks the given condition. If the condition evaluates to be true then the

Kotlin if Expression Read More »

Kotlin Hello World Program

In this article, We will learn how to start with Kotlin Programming and will write a small print “Hello World” program. Steps: IDE (Java Editor) Installation Writing Hello World Kotlin program. Kotlin Editor To write your Kotlin programs, you will need a text editor. There are different IDEs (Integrated Development Environment) available in the market

Kotlin Hello World Program Read More »