Android
Getting Started with Kotlin – Tutorial 2 – Control Flow
In the previous Kotlin tutorial we saw how to define basic variables using var/val and learned about the basic data types that Kotlin provides. Now we will look at how to implement control flow in the language using if, else and when. If-else Kotlin supports the basic control flow expressions, if and else. If Read more…