Articles in this series
Learn How to Handle Concurrency, Optimise Threads, and Build Scalable Applications with Kotlin Coroutines · Introduction One of the major problems we...
Dive into Kotlin OOP: From Beginner Concepts to Advanced Mastery · Object Oriented Programming is a programming methodology that involves execution with...
Learn Function Basics, Lambda Expressions, and Higher-Order Functions in Kotlin · Introduction Functions are a set of statements designed to perform a...
Your Pathway from Beginner to Expert: Understanding Kotlin Concepts Clearly · Lecture 1 - Introduction Introduction to Programming - Like any other...
Arrays A data structure that holds a fixed number of values of the same type or its subtypes. The most common type of array in Kotlin is the...
Classes Class is a group of similar entities and can be defined using the class keyword in Kotlin. class Person { /*...*/ } Objects (i.e. instances)...